mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-01 12:24:24 +00:00
Revert "DebugInfo: Move type units into the debug_types section with appropriate comdat grouping and type unit headers"
This reverts commit r197210. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@197211 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -297,8 +297,10 @@ void DWARFContext::parseCompileUnits() {
|
||||
}
|
||||
|
||||
void DWARFContext::parseTypeUnits() {
|
||||
const TypeSectionMap &Sections = getTypesSections();
|
||||
for (TypeSectionMap::const_iterator I = Sections.begin(), E = Sections.end();
|
||||
const std::map<object::SectionRef, Section> &Sections = getTypesSections();
|
||||
for (std::map<object::SectionRef, Section>::const_iterator
|
||||
I = Sections.begin(),
|
||||
E = Sections.end();
|
||||
I != E; ++I) {
|
||||
uint32_t offset = 0;
|
||||
const DataExtractor &DIData =
|
||||
|
Reference in New Issue
Block a user