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 ddd6b7b commit eb36394Copy full SHA for eb36394
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 *
53
- materializeCallConversion(mlir::OpBuilder &builder, mlir::Value input,
54
- mlir::Type resultType,
55
- mlir::Location loc) const override {
+ mlir::Operation *materializeCallConversion(mlir::OpBuilder &builder,
+ mlir::Value input,
+ mlir::Type resultType,
+ mlir::Location loc) const final {
56
return builder.create<fir::ConvertOp>(loc, resultType, input);
57
58
};
0 commit comments