diff options
author | Greg Clayton <gclayton@apple.com> | 2011-03-31 01:08:07 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2011-03-31 01:08:07 +0000 |
commit | 05d2b7f741f96220b3a88c9b25a08bf7faead2b0 (patch) | |
tree | a66c768c9a2aedc89b880375819b7d2d808e9baf /lldb/source/Core/Module.cpp | |
parent | 0e43f321b6dd79d522aec2af33f3f793c99ba881 (diff) | |
download | bcm5719-llvm-05d2b7f741f96220b3a88c9b25a08bf7faead2b0.tar.gz bcm5719-llvm-05d2b7f741f96220b3a88c9b25a08bf7faead2b0.zip |
Added some functions to our API related to classifying symbols as code, data,
const data, etc, and also for SBAddress objects to classify their type of
section they are in and also getting the module for a section offset address.
lldb::SymbolType SBSymbol::GetType();
lldb::SectionType SBAddress::GetSectionType ();
lldb::SBModule SBAddress::GetModule ();
llvm-svn: 128602
Diffstat (limited to 'lldb/source/Core/Module.cpp')
-rw-r--r-- | lldb/source/Core/Module.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Core/Module.cpp b/lldb/source/Core/Module.cpp index 708ff7172ba..7ceff588d16 100644 --- a/lldb/source/Core/Module.cpp +++ b/lldb/source/Core/Module.cpp @@ -74,7 +74,7 @@ Module::~Module() ModuleSP -Module::GetSP () +Module::GetSP () const { return ModuleList::GetModuleSP (this); } |