[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 10:00:36 PDT 2024
================
@@ -198,11 +198,11 @@ def NoRet : Opcode {}
def Call : Opcode {
- let Args = [ArgFunction, ArgUint32];
+ let Args = [ArgFunction, ArgUint32, ArgExpr];
----------------
tbaederr wrote:
The `assert(MyCE == CallExpr);` needs to go, but other than that, `test/AST/Interp` works. Haven't tested anything outside that yet.
https://github.com/llvm/llvm-project/pull/102170
More information about the cfe-commits
mailing list