Bump LLVM to [585010b4b0a3f986f611](585010b4b0)
This commit is contained in:
Hideto Ueno 2022-09-26 21:02:59 +09:00 committed by GitHub
parent 12595f2d0b
commit 4d7102f3d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

2
llvm

@ -1 +1 @@
Subproject commit 025a5b22c848364be0009a630e7fb53f40515e68 Subproject commit 585010b4b0a3f986f611ac522275d8420c4dfc67

View File

@ -473,7 +473,7 @@ static bool checkBytecodeOutputToConsole(raw_ostream &os) {
/// requested and politely avoiding dumping to terminal unless forced. /// requested and politely avoiding dumping to terminal unless forced.
static void printOp(Operation *op, raw_ostream &os) { static void printOp(Operation *op, raw_ostream &os) {
if (emitBytecode && (force || !checkBytecodeOutputToConsole(os))) if (emitBytecode && (force || !checkBytecodeOutputToConsole(os)))
writeBytecodeToFile(op, os, getCirctVersion()); writeBytecodeToFile(op, os, mlir::BytecodeWriterConfig(getCirctVersion()));
else else
op->print(os); op->print(os);
} }