[Lldb-commits] [lldb] [lldb/Target] Unify frame provider descriptor and chain IDs (PR #190712)

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Wed Apr 8 01:50:32 PDT 2026


================
@@ -27,7 +27,7 @@ void ScriptedFrameProviderDescriptor::Dump(Stream *s) const {
   if (!s)
     return;
 
-  s->Format("  ID: {0:x}\n", GetID());
+  s->Format("  ID: {0}\n", GetID());
   s->Printf("  Name: %s\n", GetName().str().c_str());
----------------
JDevlieghere wrote:

Since you're here, mind making this `Format` too?
```suggestion
  s->Format("  Name: {0}\n", GetName());
```

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


More information about the lldb-commits mailing list