Skip to content

Commit ee6498d

Browse files
committed
clang-format
1 parent 01be0d1 commit ee6498d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

mlir/lib/Conversion/SPIRVToLLVM/ConvertLaunchFuncToLLVMCalls.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,8 @@ class GPULaunchLowering : public ConvertOpToLLVMPattern<gpu::LaunchFuncOp> {
267267
copyInfo.push_back(info);
268268
}
269269
// Create a call to the kernel and copy the data back.
270-
rewriter.replaceOpWithNewOp<LLVM::CallOp>(op, kernelFunc, ArrayRef<Value>());
270+
rewriter.replaceOpWithNewOp<LLVM::CallOp>(op, kernelFunc,
271+
ArrayRef<Value>());
271272
for (CopyInfo info : copyInfo)
272273
copy(loc, info.src, info.dst, info.size, rewriter);
273274
return success();

0 commit comments

Comments
 (0)