Skip to content

Commit b46c03f

Browse files
author
Davide Italiano
committed
[Symbol] Remove unused downstream-only eSectionTypeDWARFAppleExternalTypes.
apple-llvm-split-commit: e29248bdee43c468db3901d1234638e1785931b1 apple-llvm-split-dir: lldb/
1 parent cf69284 commit b46c03f

File tree

6 files changed

+0
-6
lines changed

6 files changed

+0
-6
lines changed

lldb/include/lldb/lldb-enumerations.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -696,7 +696,6 @@ enum SectionType {
696696
eSectionTypeDWARFDebugStrOffsets,
697697
eSectionTypeDWARFAppleNames,
698698
eSectionTypeDWARFAppleTypes,
699-
eSectionTypeDWARFAppleExternalTypes,
700699
eSectionTypeDWARFAppleNamespaces,
701700
eSectionTypeDWARFAppleObjC,
702701
eSectionTypeELFSymbolTable, // Elf SHT_SYMTAB section

lldb/scripts/Python/static-binding/LLDBWrapPython.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82097,7 +82097,6 @@ SWIG_init(void) {
8209782097
SWIG_Python_SetConstant(d, "eSectionTypeDWARFDebugStrOffsets",SWIG_From_int(static_cast< int >(lldb::eSectionTypeDWARFDebugStrOffsets)));
8209882098
SWIG_Python_SetConstant(d, "eSectionTypeDWARFAppleNames",SWIG_From_int(static_cast< int >(lldb::eSectionTypeDWARFAppleNames)));
8209982099
SWIG_Python_SetConstant(d, "eSectionTypeDWARFAppleTypes",SWIG_From_int(static_cast< int >(lldb::eSectionTypeDWARFAppleTypes)));
82100-
SWIG_Python_SetConstant(d, "eSectionTypeDWARFAppleExternalTypes",SWIG_From_int(static_cast< int >(lldb::eSectionTypeDWARFAppleExternalTypes)));
8210182100
SWIG_Python_SetConstant(d, "eSectionTypeDWARFAppleNamespaces",SWIG_From_int(static_cast< int >(lldb::eSectionTypeDWARFAppleNamespaces)));
8210282101
SWIG_Python_SetConstant(d, "eSectionTypeDWARFAppleObjC",SWIG_From_int(static_cast< int >(lldb::eSectionTypeDWARFAppleObjC)));
8210382102
SWIG_Python_SetConstant(d, "eSectionTypeELFSymbolTable",SWIG_From_int(static_cast< int >(lldb::eSectionTypeELFSymbolTable)));

lldb/scripts/Python/static-binding/lldb.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,6 @@ class _object : pass
558558
eSectionTypeDWARFDebugStrOffsets = _lldb.eSectionTypeDWARFDebugStrOffsets
559559
eSectionTypeDWARFAppleNames = _lldb.eSectionTypeDWARFAppleNames
560560
eSectionTypeDWARFAppleTypes = _lldb.eSectionTypeDWARFAppleTypes
561-
eSectionTypeDWARFAppleExternalTypes = _lldb.eSectionTypeDWARFAppleExternalTypes
562561
eSectionTypeDWARFAppleNamespaces = _lldb.eSectionTypeDWARFAppleNamespaces
563562
eSectionTypeDWARFAppleObjC = _lldb.eSectionTypeDWARFAppleObjC
564563
eSectionTypeELFSymbolTable = _lldb.eSectionTypeELFSymbolTable

lldb/source/Core/Section.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,6 @@ const char *Section::GetTypeAsCString() const {
140140
return "regular";
141141

142142
case eSectionTypeSwiftModules:
143-
case eSectionTypeDWARFAppleExternalTypes:
144143
break;
145144
}
146145
return "unknown";

lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1224,7 +1224,6 @@ AddressClass ObjectFileMachO::GetAddressClass(lldb::addr_t file_addr) {
12241224
case eSectionTypeDWARFDebugTypes:
12251225
case eSectionTypeDWARFAppleNames:
12261226
case eSectionTypeDWARFAppleTypes:
1227-
case eSectionTypeDWARFAppleExternalTypes:
12281227
case eSectionTypeDWARFAppleNamespaces:
12291228
case eSectionTypeDWARFAppleObjC:
12301229
case eSectionTypeSwiftModules:

lldb/source/Symbol/ObjectFile.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,6 @@ AddressClass ObjectFile::GetAddressClass(addr_t file_addr) {
369369
case eSectionTypeDWARFDebugTypes:
370370
case eSectionTypeDWARFAppleNames:
371371
case eSectionTypeDWARFAppleTypes:
372-
case eSectionTypeDWARFAppleExternalTypes:
373372
case eSectionTypeDWARFAppleNamespaces:
374373
case eSectionTypeDWARFAppleObjC:
375374
case eSectionTypeSwiftModules:

0 commit comments

Comments
 (0)