mirror of
https://github.com/intel/llvm.git
synced 2026-01-16 21:55:39 +08:00
Added symbol table access through the module for now. We might need to expose
a SBSymtab class, but for now, we expose the symbols through the module. llvm-svn: 121112
This commit is contained in:
@@ -41,12 +41,17 @@ SBSymbol::operator = (const SBSymbol &rhs)
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
||||
SBSymbol::~SBSymbol ()
|
||||
{
|
||||
m_opaque_ptr = NULL;
|
||||
}
|
||||
|
||||
void
|
||||
SBSymbol::SetSymbol (lldb_private::Symbol *lldb_object_ptr)
|
||||
{
|
||||
m_opaque_ptr = lldb_object_ptr;
|
||||
}
|
||||
|
||||
bool
|
||||
SBSymbol::IsValid () const
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user