diff options
| author | Greg Clayton <gclayton@apple.com> | 2010-07-28 02:04:09 +0000 |
|---|---|---|
| committer | Greg Clayton <gclayton@apple.com> | 2010-07-28 02:04:09 +0000 |
| commit | 9e40956aeab0558ade96e537997402e568fe530a (patch) | |
| tree | 30a21967a64d9b39e03f49e886e8fdfb64b7076f /lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h | |
| parent | e1270c64e36c2f2991e4b032b783e064afab55c1 (diff) | |
| download | bcm5719-llvm-9e40956aeab0558ade96e537997402e568fe530a.tar.gz bcm5719-llvm-9e40956aeab0558ade96e537997402e568fe530a.zip | |
Created lldb::LanguageType by moving an enumeration from the
lldb_private::Language class into the enumerations header so it can be freely
used by other interfaces.
Added correct objective C class support to the DWARF symbol parser. Prior to
this fix we were parsing objective C classes as C++ classes and now that the
expression parser is ready to call functions we need to make sure the objective
C classes have correct AST types.
llvm-svn: 109574
Diffstat (limited to 'lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h')
| -rw-r--r-- | lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h b/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h index a5acdd5dd40..7a9cd9cd42f 100644 --- a/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h +++ b/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h @@ -249,6 +249,8 @@ protected: lldb::TypeSP& type_sp, const DWARFCompileUnit* dwarf_cu, const DWARFDebugInfoEntry *die, + void *class_clang_type, + const lldb::LanguageType class_language, std::vector<clang::CXXBaseSpecifier *>& base_classes, std::vector<int>& member_accessibilities, lldb_private::ClangASTContext::AccessType &default_accessibility, |

