[Lldb-commits] [lldb] [lldb] Add support for PC-less scripted frames (PR #170805)

via lldb-commits lldb-commits at lists.llvm.org
Fri Dec 5 11:46:15 PST 2025


================
@@ -1951,6 +1986,8 @@ bool FormatEntity::Format(const Entry &entry, Stream &s,
                                           frame->GetFrameCodeAddress(), false,
                                           false, false))
           return true;
+        else if (frame->IsSynthetic())
----------------
jimingham wrote:

Again, why do you return true here?  That's supposed to mean "this was successfully provided so go ahead and print any of the decoration text in the brackets containing this frame format entity.  But since you haven't printed anything in this case, I don't think that's the right return value.

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


More information about the lldb-commits mailing list