[llvm] Move a lot of symbol code to use the symbol string pool (PR #115796)

Jared Wyles via llvm-commits llvm-commits at lists.llvm.org
Tue Dec 3 15:15:54 PST 2024


================
@@ -524,7 +524,7 @@ Expected<Symbol *> EHFrameEdgeFixer::getOrCreateEncodedPointerEdge(
                << (BlockToFix.getAddress() + PointerFieldOffset) << " to "
                << FieldName << " at " << EdgeI->second.Target->getAddress();
         if (EdgeI->second.Target->hasName())
-          dbgs() << " (" << EdgeI->second.Target->getName() << ")";
+          dbgs() << " (" << *EdgeI->second.Target->getName() << ")";
----------------
jaredwy wrote:

Yes it does :) 

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


More information about the llvm-commits mailing list