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 4a3025b commit ddd6b7bCopy full SHA for ddd6b7b
flang/lib/Optimizer/Dialect/FIRDialect.cpp
@@ -49,10 +49,10 @@ struct FIRInlinerInterface : public mlir::DialectInlinerInterface {
49
valuesToRepl[it.index()].replaceAllUsesWith(it.value());
50
}
51
52
- mlir::Operation *materializeCallConversion(mlir::OpBuilder &builder,
53
- mlir::Value input,
54
- mlir::Type resultType,
55
- mlir::Location loc) const {
+ mlir::Operation *
+ materializeCallConversion(mlir::OpBuilder &builder, mlir::Value input,
+ mlir::Type resultType,
+ mlir::Location loc) const override {
56
return builder.create<fir::ConvertOp>(loc, resultType, input);
57
58
};
0 commit comments