[clang] [CIR] Upstream cir.call with scalar arguments (PR #136810)
Bruno Cardoso Lopes via cfe-commits
cfe-commits at lists.llvm.org
Wed Apr 23 11:08:16 PDT 2025
================
@@ -1496,6 +1496,10 @@ def FuncOp : CIR_Op<"func", [
return getFunctionType().getReturnTypes();
}
+ // TODO(cir): this should be an operand attribute, but for now we just hard-
+ // wire this as a function. Will later add a $no_proto argument to this op.
+ bool getNoProto() { return false; }
----------------
bcardosolopes wrote:
Maybe add assert on missing feature here?
https://github.com/llvm/llvm-project/pull/136810
More information about the cfe-commits
mailing list