We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0a25ea commit a9c954eCopy full SHA for a9c954e
clang/lib/CIR/Lowering/DirectToLLVM/LowerToLLVM.cpp
@@ -214,7 +214,8 @@ mlir::LogicalResult CIRToLLVMFloorOpLowering::matchAndRewrite(
214
cir::FloorOp op, OpAdaptor adaptor,
215
mlir::ConversionPatternRewriter &rewriter) const {
216
mlir::Type resTy = typeConverter->convertType(op.getType());
217
- rewriter.replaceOpWithNewOp<mlir::LLVM::FFloorOp>(op, resTy, adaptor.getSrc());
+ rewriter.replaceOpWithNewOp<mlir::LLVM::FFloorOp>(op, resTy,
218
+ adaptor.getSrc());
219
return mlir::success();
220
}
221
0 commit comments