[Lldb-commits] [lldb] [lldb] Extend frame recognizers to hide frames from backtraces (PR #104523)
Med Ismail Bennani via lldb-commits
lldb-commits at lists.llvm.org
Thu Aug 15 18:26:12 PDT 2024
================
@@ -91,7 +91,7 @@ class StackFrameList {
size_t GetStatus(Stream &strm, uint32_t first_frame, uint32_t num_frames,
bool show_frame_info, uint32_t num_frames_with_source,
- bool show_unique = false,
+ bool show_unique = false, bool should_filter = true,
----------------
medismailben wrote:
Can we rename `should_filter` to `show_hidden`. The former sounds like we're just about to perform the filtering whereas the latter sounds like some frames have a "hidden" flag and we should show them based on that. Also that would make it more consistent with the other flags.
https://github.com/llvm/llvm-project/pull/104523
More information about the lldb-commits
mailing list