[clang] [CIR] Add support for indirect calls (PR #139748)
Sirui Mu via cfe-commits
cfe-commits at lists.llvm.org
Sat May 17 08:28:02 PDT 2025
================
@@ -1861,13 +1867,23 @@ def CallOp : CIR_CallOpBase<"call", [NoRegionArguments]> {
let arguments = commonArgs;
let builders = [OpBuilder<(ins "mlir::SymbolRefAttr":$callee,
- "mlir::Type":$resType,
- "mlir::ValueRange":$operands), [{
+ "mlir::Type":$resType,
+ "mlir::ValueRange":$operands),
+ [{
$_state.addOperands(operands);
$_state.addAttribute("callee", callee);
----------------
Lancern wrote:
Since this builder is for building a direct call I believe it's more proper to have an assertion here that ensure `callee` is non-empty.
https://github.com/llvm/llvm-project/pull/139748
More information about the cfe-commits
mailing list