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 448adb5 commit 3528341Copy full SHA for 3528341
clang/lib/CIR/Dialect/Transforms/LoweringPrepare.cpp
@@ -1097,7 +1097,7 @@ void LoweringPreparePass::lowerTrivialCopyCall(cir::CallOp op) {
1097
llvm::outs() << "success \n";
1098
// Replace the trivial copy constructor call with a `CopyOp`
1099
CIRBaseBuilderTy builder(getContext());
1100
- auto operands = op.getOperands();
+ mlir::ValueRange operands = op.getOperands();
1101
mlir::Value dest = operands[0];
1102
mlir::Value src = operands[1];
1103
builder.setInsertionPoint(op);
0 commit comments