forked from OSchip/llvm-project
parent
dc72caa6de
commit
3b06557e4f
|
@ -57,6 +57,9 @@ public:
|
|||
lldb::SBFunction
|
||||
GetFunction () const;
|
||||
|
||||
lldb::SBSymbol
|
||||
GetSymbol () const;
|
||||
|
||||
// Gets the deepest block that contains the frame PC
|
||||
lldb::SBBlock
|
||||
GetBlock () const;
|
||||
|
|
|
@ -99,6 +99,13 @@ SBFrame::GetFunction () const
|
|||
return sb_function;
|
||||
}
|
||||
|
||||
SBSymbol
|
||||
SBFrame::GetSymbol () const
|
||||
{
|
||||
SBSymbol sb_symbol(m_opaque_sp->GetSymbolContext (eSymbolContextSymbol).symbol);
|
||||
return sb_symbol;
|
||||
}
|
||||
|
||||
SBBlock
|
||||
SBFrame::GetBlock () const
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue