[Lldb-commits] [lldb] [lldb] add settings to control how synthetic symbol names are generated (PR #137512)

Ely Ronnen via lldb-commits lldb-commits at lists.llvm.org
Sun Apr 27 04:54:41 PDT 2025


================
@@ -639,7 +639,18 @@ void Symbol::SynthesizeNameIfNeeded() const {
     // breakpoints on them.
     llvm::SmallString<256> name;
     llvm::raw_svector_ostream os(name);
-    os << GetSyntheticSymbolPrefix() << GetID();
+    os << GetSyntheticSymbolPrefix();
----------------
eronnen wrote:

Not sure whether it's better to cache this setting for the session or not

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


More information about the lldb-commits mailing list