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