[Lldb-commits] [lldb] [lldb] Extend frame recognizers to hide frames from backtraces (PR #104523)

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Tue Aug 20 11:40:31 PDT 2024


================
@@ -518,33 +523,33 @@ class StackFrame : public ExecutionContextScope,
   bool HasCachedData() const;
 
 private:
-  // For StackFrame only
+  /// For StackFrame only.
   lldb::ThreadWP m_thread_wp;
   uint32_t m_frame_index;
   uint32_t m_concrete_frame_index;
   lldb::RegisterContextSP m_reg_context_sp;
   StackID m_id;
----------------
JDevlieghere wrote:

```suggestion
  /// For StackFrame only.
  /// @{ 
  lldb::ThreadWP m_thread_wp;
  uint32_t m_frame_index;
  uint32_t m_concrete_frame_index;
  lldb::RegisterContextSP m_reg_context_sp;
  StackID m_id;
  /// @}
```

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


More information about the lldb-commits mailing list