Skip to content

Commit a7f3308

Browse files
committed
Format code
1 parent 2d7dc5d commit a7f3308

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mlir/lib/Conversion/LLVMCommon/PrintCallHelper.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ LogicalResult mlir::LLVM::createPrintStrCall(
6060
Value gep =
6161
builder.create<LLVM::GEPOp>(loc, ptrTy, arrayTy, msgAddr, indices);
6262
FailureOr<LLVM::LLVMFuncOp> printer =
63-
LLVM::lookupOrCreatePrintStringFn(moduleOp, runtimeFunctionName);
64-
if(failed(printer))
63+
LLVM::lookupOrCreatePrintStringFn(moduleOp, runtimeFunctionName);
64+
if (failed(printer))
6565
return failure();
6666
builder.create<LLVM::CallOp>(loc, TypeRange(),
67-
SymbolRefAttr::get(printer.value()), gep);
67+
SymbolRefAttr::get(printer.value()), gep);
6868
return success();
6969
}

0 commit comments

Comments
 (0)