[Lldb-commits] [lldb] [lldb-dap] Add an option to show function args in stack frames (PR #71843)
Alex Langford via lldb-commits
lldb-commits at lists.llvm.org
Thu Nov 9 13:16:39 PST 2023
================
@@ -324,8 +325,23 @@ class StackFrame : public ExecutionContextScope,
/// C string with the assembly instructions for this function.
const char *Disassemble();
+ /// Print a description of this frame using the provided frame format.
+ /// If the format is invalid, then the default formatter will be used (see \a
+ /// StackFrame::Dump()), in which case \b false is returned. Otherwise, \b
+ /// true is returned.
+ ///
+ /// \param[in] strm
----------------
bulbazord wrote:
This is an out parameter no?
https://github.com/llvm/llvm-project/pull/71843
More information about the lldb-commits
mailing list