[llvm-branch-commits] [lldb] [lldb] Add extended variable support to Get*VariableList. (PR #181501)
Med Ismail Bennani via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Wed Apr 15 22:28:10 PDT 2026
================
@@ -439,7 +439,11 @@ StackFrame::GetSymbolContext(SymbolContextItem resolve_scope) {
}
VariableList *StackFrame::GetVariableList(bool get_file_globals,
+ bool include_extended_vars,
Status *error_ptr) {
+ // We don't have 'extended variables' in the base stack frame.
+ (void)include_extended_vars;
----------------
medismailben wrote:
I guess we can do it in a follow-up
https://github.com/llvm/llvm-project/pull/181501
More information about the llvm-branch-commits
mailing list