[clang] [Clang][Interp] Fix display of syntactically-invalid note for member function calls (PR #102170)
Timm Baeder via cfe-commits
cfe-commits at lists.llvm.org
Thu Aug 8 07:29:14 PDT 2024
================
@@ -198,11 +198,11 @@ def NoRet : Opcode {}
def Call : Opcode {
- let Args = [ArgFunction, ArgUint32];
+ let Args = [ArgFunction, ArgUint32, ArgExpr];
----------------
tbaederr wrote:
As you can see in the snippet I posted, you get an `Expr*` anyway, so you can check for the type of that as well. Can you try if that works?
https://github.com/llvm/llvm-project/pull/102170
More information about the cfe-commits
mailing list