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 4fb0a4d commit 2d3f11aCopy full SHA for 2d3f11a
clang/lib/CIR/Dialect/Transforms/CallConvLowering.cpp
@@ -36,7 +36,8 @@ struct CallConvLoweringPattern : public OpRewritePattern<FuncOp> {
36
return op.emitError("function has no AST information");
37
38
auto modOp = op->getParentOfType<ModuleOp>();
39
- auto lowerModule = createLowerModule(modOp, rewriter);
+ std::unique_ptr<LowerModule> lowerModule =
40
+ createLowerModule(modOp, rewriter);
41
42
// Rewrite function calls before definitions. This should be done before
43
// lowering the definition.
0 commit comments