[libcxxabi] [lldb] [llvm] [WIP] [ItaniumDemangle] Add infrastructure to track location information of parts of a demangled function name (PR #133249)

Richard Smith via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 3 13:54:39 PDT 2025


================
@@ -6176,6 +6180,10 @@ struct ManglingParser : AbstractManglingParser<ManglingParser<Alloc>, Alloc> {
                                Alloc>::AbstractManglingParser;
 };
 
+inline void OutputBuffer::printLeft(const Node &N) { N.printLeft(*this); }
----------------
zygoloid wrote:

Thanks, yes. I agree that the duplication is not ideal, and I think it'd be fine to add a few more virtual function calls if it reduces the duplication, but this extension to the demangler looks nice and clean now.

https://github.com/llvm/llvm-project/pull/133249


More information about the llvm-commits mailing list