[libcxx-commits] [libcxxabi] [libcxxabi][ItaniumDemangle] Demangle explicitly named object parameters (PR #72881)
Michael Buch via libcxx-commits
libcxx-commits at lists.llvm.org
Fri Nov 24 05:00:54 PST 2023
================
@@ -5424,6 +5435,9 @@ Node *AbstractManglingParser<Derived, Alloc>::parseEncoding() {
return nullptr;
Names.push_back(Ty);
} while (!IsEndOfEncoding() && look() != 'Q');
+ // Ignore the explicit 'this' parameter.
+ if (NameInfo.HasExplicitObjectParameter)
----------------
Michael137 wrote:
Had a stab at this in the latest commit
https://github.com/llvm/llvm-project/pull/72881
More information about the libcxx-commits
mailing list