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/Plugins | |
| 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/Plugins')
| -rw-r--r-- | lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h b/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h index 991d92907f4..735fb54f07e 100644 --- a/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h +++ b/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h @@ -168,7 +168,9 @@ public: const DWARFDebugRanges* DebugRanges() const; const lldb_private::DataExtractor& - GetCachedSectionData (uint32_t got_flag, lldb_private::SectionType sect_type, lldb_private::DataExtractor &data); + GetCachedSectionData (uint32_t got_flag, + lldb::SectionType sect_type, + lldb_private::DataExtractor &data); static bool SupportedVersion(uint16_t version); |

