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

Adrian Prantl via lldb-commits lldb-commits at lists.llvm.org
Fri Aug 16 08:51:32 PDT 2024


================
@@ -1048,6 +1048,9 @@ let Command = "thread backtrace" in {
   Arg<"FrameIndex">, Desc<"Frame in which to start the backtrace">;
   def thread_backtrace_extended : Option<"extended", "e">, Group<1>,
   Arg<"Boolean">, Desc<"Show the extended backtrace, if available">;
+  def thread_backtrace_full : Option<"filtered", "f">, Group<1>,
+  Arg<"Boolean">,
----------------
adrian-prantl wrote:

The problem is that this is True by default. I guess I could negate the option? What's a good name `-u`, `--unfiltered`?

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


More information about the lldb-commits mailing list