diff options
Diffstat (limited to 'include/llvm/DebugInfo/DWARF/DWARFSection.h')
| -rw-r--r-- | include/llvm/DebugInfo/DWARF/DWARFSection.h | 7 | 
1 files changed, 5 insertions, 2 deletions
| diff --git a/include/llvm/DebugInfo/DWARF/DWARFSection.h b/include/llvm/DebugInfo/DWARF/DWARFSection.h index 2b8a53a4c93e..77045f0794ae 100644 --- a/include/llvm/DebugInfo/DWARF/DWARFSection.h +++ b/include/llvm/DebugInfo/DWARF/DWARFSection.h @@ -11,13 +11,16 @@  #define LLVM_DEBUGINFO_DWARF_DWARFSECTION_H  #include "llvm/ADT/StringRef.h" -#include "llvm/DebugInfo/DWARF/DWARFRelocMap.h"  namespace llvm {  struct DWARFSection {    StringRef Data; -  RelocAddrMap Relocs; +}; + +struct SectionName { +  StringRef Name; +  bool IsNameUnique;  };  } // end namespace llvm | 
