diff options
author | Frederic Riss <friss@apple.com> | 2014-12-19 18:26:33 +0000 |
---|---|---|
committer | Frederic Riss <friss@apple.com> | 2014-12-19 18:26:33 +0000 |
commit | b88adbdeb068963c57542e7d0079a28697589684 (patch) | |
tree | 4e644ac137333483aea09d70c288b62c86413eff /llvm/lib/DebugInfo/DWARFSection.h | |
parent | 54fa73afed47cbd2a901a9037621ae8ace4f8641 (diff) | |
download | bcm5719-llvm-b88adbdeb068963c57542e7d0079a28697589684.tar.gz bcm5719-llvm-b88adbdeb068963c57542e7d0079a28697589684.zip |
[DebugInfo] Move all DWARF headers to the public include directory.
dsymutil needs access to DWARF specific inforamtion, the small DIContext
wrapper isn't sufficient. Other DWARF consumers might want to use it too
(I'm looking at you lldb).
Differential Revision: http://reviews.llvm.org/D6694
llvm-svn: 224594
Diffstat (limited to 'llvm/lib/DebugInfo/DWARFSection.h')
-rw-r--r-- | llvm/lib/DebugInfo/DWARFSection.h | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/llvm/lib/DebugInfo/DWARFSection.h b/llvm/lib/DebugInfo/DWARFSection.h deleted file mode 100644 index 3aaf0ffb544..00000000000 --- a/llvm/lib/DebugInfo/DWARFSection.h +++ /dev/null @@ -1,24 +0,0 @@ -//===-- DWARFSection.h ------------------------------------------*- C++ -*-===// -// -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// - -#ifndef LLVM_LIB_DEBUGINFO_DWARFSECTION_H -#define LLVM_LIB_DEBUGINFO_DWARFSECTION_H - -#include "DWARFRelocMap.h" - -namespace llvm { - -struct DWARFSection { - StringRef Data; - RelocAddrMap Relocs; -}; - -} - -#endif |