forked from OSchip/llvm-project
[lldb] Remove unimplemented StackFrame::BehavesLikeZerothFrame
Commit [1] added a declaration of function-member
StackFrame::BehavesLikeZerothFrame but hasn't added an implementation
for the function. This commit removes this declation, because the
function is not used anywhere.
[1] 31e6dbe1c6
Fix PC adjustment in StackFrame::GetSymbolContext
Differential Revision: https://reviews.llvm.org/D75979
Patch by Anton Kolesov <Anton.Kolesov@synopsys.com>
This commit is contained in:
parent
0a840ef800
commit
332edcc6bd
|
@ -367,12 +367,6 @@ public:
|
|||
/// may have limited support for inspecting variables.
|
||||
bool IsArtificial() const;
|
||||
|
||||
/// Query whether this frame behaves like the zeroth frame, in the sense
|
||||
/// that its pc value might not immediately follow a call (and thus might
|
||||
/// be the first address of its function). True for actual frame zero as
|
||||
/// well as any other frame with the same trait.
|
||||
bool BehavesLikeZerothFrame() const;
|
||||
|
||||
/// Query this frame to find what frame it is in this Thread's
|
||||
/// StackFrameList.
|
||||
///
|
||||
|
@ -517,6 +511,11 @@ private:
|
|||
bool m_cfa_is_valid; // Does this frame have a CFA? Different from CFA ==
|
||||
// LLDB_INVALID_ADDRESS
|
||||
Kind m_stack_frame_kind;
|
||||
|
||||
// Whether this frame behaves like the zeroth frame, in the sense
|
||||
// that its pc value might not immediately follow a call (and thus might
|
||||
// be the first address of its function). True for actual frame zero as
|
||||
// well as any other frame with the same trait.
|
||||
bool m_behaves_like_zeroth_frame;
|
||||
lldb::VariableListSP m_variable_list_sp;
|
||||
ValueObjectList m_variable_list_value_objects; // Value objects for each
|
||||
|
|
Loading…
Reference in New Issue