[Lldb-commits] [PATCH] D137284: Override CalculateFrameVariableError in SymbolFileOnDemand
Greg Clayton via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Thu Nov 3 11:09:58 PDT 2022
clayborg requested changes to this revision.
clayborg added a comment.
This revision now requires changes to proceed.
Just have the case when debug info is not enabled return "Status()" (a default constructed error with no error) and this will be good to go.
================
Comment at: lldb/source/Symbol/SymbolFileOnDemand.cpp:281
+ __FUNCTION__);
+ return this->CalculateFrameVariableError(frame);
+ }
----------------
This will create an infinite loop right? See code change suggestions for fix.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D137284/new/
https://reviews.llvm.org/D137284
More information about the lldb-commits
mailing list