function::print_backtrace - Linux
Overview
The function::print_backtrace
command is used within LLVM’s debugger to print the function backtrace for the current call stack.
Syntax
function::print_backtrace [--no-inlining]
Options/Flags
–no-inlining
Omit inlined frames from the backtrace.
Examples
Print a function backtrace with inlining:
(lldb) function::print_backtrace
Print a function backtrace without inlining:
(lldb) function::print_backtrace --no-inlining
Common Issues
None known.
Integration
This command is primarily used in conjunction with other debugger commands to provide additional context for debugging purposes.