From 8c920840a4d80f965b7a09d9ac64adacb3fd0e55 Mon Sep 17 00:00:00 2001 From: Greg Clayton Date: Wed, 21 Jul 2010 21:51:36 +0000 Subject: [PATCH] Add new SectionType enumerations for all DWARF sections. ObjectFile parsers should start properly setting the section types for DWARF sections, then we can move the DWARF SymbolFile parser over to finding the sections by the appropriate SectionType. llvm-svn: 109041 --- lldb/include/lldb/lldb-enumerations.h | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/lldb/include/lldb/lldb-enumerations.h b/lldb/include/lldb/lldb-enumerations.h index 17622a83f95e..40b9ba02c238 100644 --- a/lldb/include/lldb/lldb-enumerations.h +++ b/lldb/include/lldb/lldb-enumerations.h @@ -367,6 +367,17 @@ typedef enum SectionType eSectionTypeZeroFill, eSectionTypeDataObjCMessageRefs, // Pointer to function pointer + selector eSectionTypeDataObjCCFStrings, // Objective C const CFString/NSString objects + eSectionTypeDWARFDebugAbbrev, + eSectionTypeDWARFDebugAranges, + eSectionTypeDWARFDebugFrame, + eSectionTypeDWARFDebugInfo, + eSectionTypeDWARFDebugLine, + eSectionTypeDWARFDebugLoc, + eSectionTypeDWARFDebugMacInfo, + eSectionTypeDWARFDebugPubnames, + eSectionTypeDWARFDebugPubtypes, + eSectionTypeDWARFDebugRanges, + eSectionTypeDWARFDebugStr, eSectionTypeOther } SectionType; -- GitLab