[clang] [CIR] Add support for AST call expressions on cir.call (PR #207261)
Andy Kaylor via cfe-commits
cfe-commits at lists.llvm.org
Thu Jul 2 12:57:16 PDT 2026
================
@@ -1684,6 +1684,10 @@ def CIR_ASTVarDeclAttr : CIR_AST<"VarDecl", "var.decl", [
ASTVarDeclInterface
]>;
+def CIR_ASTCallExprAttr : CIR_AST<"CallExpr", "call.expr", [
+ ASTCallExprInterface
----------------
andykaylor wrote:
I just realized that name mangling is the real impediment here. So I guess we'll also want the unmangled name (assuming we don't want to have a full demangler in the transform).
https://github.com/llvm/llvm-project/pull/207261
More information about the cfe-commits
mailing list