DWARFSection.h 603 B

12345678910111213141516171819202122232425
  1. //===-- DWARFSection.h ------------------------------------------*- C++ -*-===//
  2. //
  3. // The LLVM Compiler Infrastructure
  4. //
  5. // This file is distributed under the University of Illinois Open Source
  6. // License. See LICENSE.TXT for details.
  7. //
  8. //===----------------------------------------------------------------------===//
  9. #ifndef LLVM_LIB_DEBUGINFO_DWARFSECTION_H
  10. #define LLVM_LIB_DEBUGINFO_DWARFSECTION_H
  11. #include "llvm/DebugInfo/DWARF/DWARFRelocMap.h"
  12. #include "llvm/ADT/StringRef.h"
  13. namespace llvm {
  14. struct DWARFSection {
  15. StringRef Data;
  16. RelocAddrMap Relocs;
  17. };
  18. }
  19. #endif