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 09fdde1 commit 445b348Copy full SHA for 445b348
clang/lib/CIR/CodeGen/CIRGenBuiltin.cpp
@@ -147,7 +147,7 @@ static RValue emitBuiltinBitOp(
147
} else {
148
op = CGF.getBuilder().create<Op>(CGF.getLoc(E->getExprLoc()), arg);
149
}
150
- const auto bitResult = op.getResult();
+ const mlir::Value bitResult = op.getResult();
151
if (const auto si32Ty = CGF.getBuilder().getSInt32Ty();
152
convert_to_int && arg.getType() != si32Ty) {
153
return RValue::get(CGF.getBuilder().createIntCast(bitResult, si32Ty));
0 commit comments