From 7e5492d27d1216b7a8b9240c7fc1592bf79eabe3 Mon Sep 17 00:00:00 2001 From: Frederic Riss Date: Fri, 19 Dec 2014 18:26:33 +0000 Subject: [PATCH] [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 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@224594 91177308-0d34-0410-b5e6-96231b3b80d8 --- .../DebugInfo/DWARFAbbreviationDeclaration.h | 0 .../llvm}/DebugInfo/DWARFAcceleratorTable.h | 2 +- .../llvm}/DebugInfo/DWARFCompileUnit.h | 2 +- {lib => include/llvm}/DebugInfo/DWARFContext.h | 16 ++++++++-------- .../llvm}/DebugInfo/DWARFDebugAbbrev.h | 2 +- .../llvm}/DebugInfo/DWARFDebugArangeSet.h | 0 .../llvm}/DebugInfo/DWARFDebugAranges.h | 0 .../llvm}/DebugInfo/DWARFDebugFrame.h | 0 .../llvm}/DebugInfo/DWARFDebugInfoEntry.h | 4 ++-- {lib => include/llvm}/DebugInfo/DWARFDebugLine.h | 2 +- {lib => include/llvm}/DebugInfo/DWARFDebugLoc.h | 2 +- .../llvm}/DebugInfo/DWARFDebugRangeList.h | 0 {lib => include/llvm}/DebugInfo/DWARFRelocMap.h | 0 {lib => include/llvm}/DebugInfo/DWARFSection.h | 2 +- {lib => include/llvm}/DebugInfo/DWARFTypeUnit.h | 2 +- {lib => include/llvm}/DebugInfo/DWARFUnit.h | 10 +++++----- lib/DebugInfo/DIContext.cpp | 2 +- lib/DebugInfo/DWARFAbbreviationDeclaration.cpp | 2 +- lib/DebugInfo/DWARFAcceleratorTable.cpp | 2 +- lib/DebugInfo/DWARFCompileUnit.cpp | 2 +- lib/DebugInfo/DWARFContext.cpp | 6 +++--- lib/DebugInfo/DWARFDebugAbbrev.cpp | 2 +- lib/DebugInfo/DWARFDebugArangeSet.cpp | 2 +- lib/DebugInfo/DWARFDebugAranges.cpp | 8 ++++---- lib/DebugInfo/DWARFDebugFrame.cpp | 2 +- lib/DebugInfo/DWARFDebugInfoEntry.cpp | 8 ++++---- lib/DebugInfo/DWARFDebugLine.cpp | 2 +- lib/DebugInfo/DWARFDebugLoc.cpp | 2 +- lib/DebugInfo/DWARFDebugRangeList.cpp | 2 +- lib/DebugInfo/DWARFFormValue.cpp | 4 ++-- lib/DebugInfo/DWARFTypeUnit.cpp | 2 +- lib/DebugInfo/DWARFUnit.cpp | 4 ++-- 32 files changed, 48 insertions(+), 48 deletions(-) rename {lib => include/llvm}/DebugInfo/DWARFAbbreviationDeclaration.h (100%) rename {lib => include/llvm}/DebugInfo/DWARFAcceleratorTable.h (96%) rename {lib => include/llvm}/DebugInfo/DWARFCompileUnit.h (96%) rename {lib => include/llvm}/DebugInfo/DWARFContext.h (96%) rename {lib => include/llvm}/DebugInfo/DWARFDebugAbbrev.h (96%) rename {lib => include/llvm}/DebugInfo/DWARFDebugArangeSet.h (100%) rename {lib => include/llvm}/DebugInfo/DWARFDebugAranges.h (100%) rename {lib => include/llvm}/DebugInfo/DWARFDebugFrame.h (100%) rename {lib => include/llvm}/DebugInfo/DWARFDebugInfoEntry.h (98%) rename {lib => include/llvm}/DebugInfo/DWARFDebugLine.h (99%) rename {lib => include/llvm}/DebugInfo/DWARFDebugLoc.h (98%) rename {lib => include/llvm}/DebugInfo/DWARFDebugRangeList.h (100%) rename {lib => include/llvm}/DebugInfo/DWARFRelocMap.h (100%) rename {lib => include/llvm}/DebugInfo/DWARFSection.h (92%) rename {lib => include/llvm}/DebugInfo/DWARFTypeUnit.h (96%) rename {lib => include/llvm}/DebugInfo/DWARFUnit.h (97%) diff --git a/lib/DebugInfo/DWARFAbbreviationDeclaration.h b/include/llvm/DebugInfo/DWARFAbbreviationDeclaration.h similarity index 100% rename from lib/DebugInfo/DWARFAbbreviationDeclaration.h rename to include/llvm/DebugInfo/DWARFAbbreviationDeclaration.h diff --git a/lib/DebugInfo/DWARFAcceleratorTable.h b/include/llvm/DebugInfo/DWARFAcceleratorTable.h similarity index 96% rename from lib/DebugInfo/DWARFAcceleratorTable.h rename to include/llvm/DebugInfo/DWARFAcceleratorTable.h index 7dc9591b3d2..af74a478d04 100644 --- a/lib/DebugInfo/DWARFAcceleratorTable.h +++ b/include/llvm/DebugInfo/DWARFAcceleratorTable.h @@ -7,7 +7,7 @@ // //===----------------------------------------------------------------------===// -#include "DWARFRelocMap.h" +#include "llvm/DebugInfo/DWARFRelocMap.h" #include "llvm/ADT/SmallVector.h" #include "llvm/DebugInfo/DWARFFormValue.h" diff --git a/lib/DebugInfo/DWARFCompileUnit.h b/include/llvm/DebugInfo/DWARFCompileUnit.h similarity index 96% rename from lib/DebugInfo/DWARFCompileUnit.h rename to include/llvm/DebugInfo/DWARFCompileUnit.h index b3190b18763..dbf777cc71a 100644 --- a/lib/DebugInfo/DWARFCompileUnit.h +++ b/include/llvm/DebugInfo/DWARFCompileUnit.h @@ -10,7 +10,7 @@ #ifndef LLVM_LIB_DEBUGINFO_DWARFCOMPILEUNIT_H #define LLVM_LIB_DEBUGINFO_DWARFCOMPILEUNIT_H -#include "DWARFUnit.h" +#include "llvm/DebugInfo/DWARFUnit.h" namespace llvm { diff --git a/lib/DebugInfo/DWARFContext.h b/include/llvm/DebugInfo/DWARFContext.h similarity index 96% rename from lib/DebugInfo/DWARFContext.h rename to include/llvm/DebugInfo/DWARFContext.h index dd3fcc71f32..4c1bd81d62a 100644 --- a/lib/DebugInfo/DWARFContext.h +++ b/include/llvm/DebugInfo/DWARFContext.h @@ -10,16 +10,16 @@ #ifndef LLVM_LIB_DEBUGINFO_DWARFCONTEXT_H #define LLVM_LIB_DEBUGINFO_DWARFCONTEXT_H -#include "DWARFCompileUnit.h" -#include "DWARFDebugAranges.h" -#include "DWARFDebugFrame.h" -#include "DWARFDebugLine.h" -#include "DWARFDebugLoc.h" -#include "DWARFDebugRangeList.h" -#include "DWARFSection.h" -#include "DWARFTypeUnit.h" #include "llvm/ADT/MapVector.h" #include "llvm/ADT/SmallVector.h" +#include "llvm/DebugInfo/DWARFCompileUnit.h" +#include "llvm/DebugInfo/DWARFDebugAranges.h" +#include "llvm/DebugInfo/DWARFDebugFrame.h" +#include "llvm/DebugInfo/DWARFDebugLine.h" +#include "llvm/DebugInfo/DWARFDebugLoc.h" +#include "llvm/DebugInfo/DWARFDebugRangeList.h" +#include "llvm/DebugInfo/DWARFSection.h" +#include "llvm/DebugInfo/DWARFTypeUnit.h" #include "llvm/DebugInfo/DIContext.h" #include diff --git a/lib/DebugInfo/DWARFDebugAbbrev.h b/include/llvm/DebugInfo/DWARFDebugAbbrev.h similarity index 96% rename from lib/DebugInfo/DWARFDebugAbbrev.h rename to include/llvm/DebugInfo/DWARFDebugAbbrev.h index 4b3b8149313..6752df9cd72 100644 --- a/lib/DebugInfo/DWARFDebugAbbrev.h +++ b/include/llvm/DebugInfo/DWARFDebugAbbrev.h @@ -10,7 +10,7 @@ #ifndef LLVM_LIB_DEBUGINFO_DWARFDEBUGABBREV_H #define LLVM_LIB_DEBUGINFO_DWARFDEBUGABBREV_H -#include "DWARFAbbreviationDeclaration.h" +#include "llvm/DebugInfo/DWARFAbbreviationDeclaration.h" #include #include #include diff --git a/lib/DebugInfo/DWARFDebugArangeSet.h b/include/llvm/DebugInfo/DWARFDebugArangeSet.h similarity index 100% rename from lib/DebugInfo/DWARFDebugArangeSet.h rename to include/llvm/DebugInfo/DWARFDebugArangeSet.h diff --git a/lib/DebugInfo/DWARFDebugAranges.h b/include/llvm/DebugInfo/DWARFDebugAranges.h similarity index 100% rename from lib/DebugInfo/DWARFDebugAranges.h rename to include/llvm/DebugInfo/DWARFDebugAranges.h diff --git a/lib/DebugInfo/DWARFDebugFrame.h b/include/llvm/DebugInfo/DWARFDebugFrame.h similarity index 100% rename from lib/DebugInfo/DWARFDebugFrame.h rename to include/llvm/DebugInfo/DWARFDebugFrame.h diff --git a/lib/DebugInfo/DWARFDebugInfoEntry.h b/include/llvm/DebugInfo/DWARFDebugInfoEntry.h similarity index 98% rename from lib/DebugInfo/DWARFDebugInfoEntry.h rename to include/llvm/DebugInfo/DWARFDebugInfoEntry.h index 7e7efb98ba7..f05d64b6f34 100644 --- a/lib/DebugInfo/DWARFDebugInfoEntry.h +++ b/include/llvm/DebugInfo/DWARFDebugInfoEntry.h @@ -10,10 +10,10 @@ #ifndef LLVM_LIB_DEBUGINFO_DWARFDEBUGINFOENTRY_H #define LLVM_LIB_DEBUGINFO_DWARFDEBUGINFOENTRY_H -#include "DWARFAbbreviationDeclaration.h" -#include "DWARFDebugRangeList.h" #include "llvm/ADT/SmallVector.h" #include "llvm/DebugInfo/DIContext.h" +#include "llvm/DebugInfo/DWARFAbbreviationDeclaration.h" +#include "llvm/DebugInfo/DWARFDebugRangeList.h" #include "llvm/Support/DataTypes.h" namespace llvm { diff --git a/lib/DebugInfo/DWARFDebugLine.h b/include/llvm/DebugInfo/DWARFDebugLine.h similarity index 99% rename from lib/DebugInfo/DWARFDebugLine.h rename to include/llvm/DebugInfo/DWARFDebugLine.h index 7a6f1bdb026..c5ee76e3968 100644 --- a/lib/DebugInfo/DWARFDebugLine.h +++ b/include/llvm/DebugInfo/DWARFDebugLine.h @@ -10,8 +10,8 @@ #ifndef LLVM_LIB_DEBUGINFO_DWARFDEBUGLINE_H #define LLVM_LIB_DEBUGINFO_DWARFDEBUGLINE_H -#include "DWARFRelocMap.h" #include "llvm/DebugInfo/DIContext.h" +#include "llvm/DebugInfo/DWARFRelocMap.h" #include "llvm/Support/DataExtractor.h" #include #include diff --git a/lib/DebugInfo/DWARFDebugLoc.h b/include/llvm/DebugInfo/DWARFDebugLoc.h similarity index 98% rename from lib/DebugInfo/DWARFDebugLoc.h rename to include/llvm/DebugInfo/DWARFDebugLoc.h index 50110b39088..a6135a0c929 100644 --- a/lib/DebugInfo/DWARFDebugLoc.h +++ b/include/llvm/DebugInfo/DWARFDebugLoc.h @@ -10,8 +10,8 @@ #ifndef LLVM_LIB_DEBUGINFO_DWARFDEBUGLOC_H #define LLVM_LIB_DEBUGINFO_DWARFDEBUGLOC_H -#include "DWARFRelocMap.h" #include "llvm/ADT/SmallVector.h" +#include "llvm/DebugInfo/DWARFRelocMap.h" #include "llvm/Support/DataExtractor.h" namespace llvm { diff --git a/lib/DebugInfo/DWARFDebugRangeList.h b/include/llvm/DebugInfo/DWARFDebugRangeList.h similarity index 100% rename from lib/DebugInfo/DWARFDebugRangeList.h rename to include/llvm/DebugInfo/DWARFDebugRangeList.h diff --git a/lib/DebugInfo/DWARFRelocMap.h b/include/llvm/DebugInfo/DWARFRelocMap.h similarity index 100% rename from lib/DebugInfo/DWARFRelocMap.h rename to include/llvm/DebugInfo/DWARFRelocMap.h diff --git a/lib/DebugInfo/DWARFSection.h b/include/llvm/DebugInfo/DWARFSection.h similarity index 92% rename from lib/DebugInfo/DWARFSection.h rename to include/llvm/DebugInfo/DWARFSection.h index 3aaf0ffb544..5f09d9e37d8 100644 --- a/lib/DebugInfo/DWARFSection.h +++ b/include/llvm/DebugInfo/DWARFSection.h @@ -10,7 +10,7 @@ #ifndef LLVM_LIB_DEBUGINFO_DWARFSECTION_H #define LLVM_LIB_DEBUGINFO_DWARFSECTION_H -#include "DWARFRelocMap.h" +#include "llvm/DebugInfo/DWARFRelocMap.h" namespace llvm { diff --git a/lib/DebugInfo/DWARFTypeUnit.h b/include/llvm/DebugInfo/DWARFTypeUnit.h similarity index 96% rename from lib/DebugInfo/DWARFTypeUnit.h rename to include/llvm/DebugInfo/DWARFTypeUnit.h index 7471b5a821a..213b54139e0 100644 --- a/lib/DebugInfo/DWARFTypeUnit.h +++ b/include/llvm/DebugInfo/DWARFTypeUnit.h @@ -10,7 +10,7 @@ #ifndef LLVM_LIB_DEBUGINFO_DWARFTYPEUNIT_H #define LLVM_LIB_DEBUGINFO_DWARFTYPEUNIT_H -#include "DWARFUnit.h" +#include "llvm/DebugInfo/DWARFUnit.h" namespace llvm { diff --git a/lib/DebugInfo/DWARFUnit.h b/include/llvm/DebugInfo/DWARFUnit.h similarity index 97% rename from lib/DebugInfo/DWARFUnit.h rename to include/llvm/DebugInfo/DWARFUnit.h index 786f00f5e8e..d71a1b60b73 100644 --- a/lib/DebugInfo/DWARFUnit.h +++ b/include/llvm/DebugInfo/DWARFUnit.h @@ -10,11 +10,11 @@ #ifndef LLVM_LIB_DEBUGINFO_DWARFUNIT_H #define LLVM_LIB_DEBUGINFO_DWARFUNIT_H -#include "DWARFDebugAbbrev.h" -#include "DWARFDebugInfoEntry.h" -#include "DWARFDebugRangeList.h" -#include "DWARFRelocMap.h" -#include "DWARFSection.h" +#include "llvm/DebugInfo/DWARFDebugAbbrev.h" +#include "llvm/DebugInfo/DWARFDebugInfoEntry.h" +#include "llvm/DebugInfo/DWARFDebugRangeList.h" +#include "llvm/DebugInfo/DWARFRelocMap.h" +#include "llvm/DebugInfo/DWARFSection.h" #include namespace llvm { diff --git a/lib/DebugInfo/DIContext.cpp b/lib/DebugInfo/DIContext.cpp index 01aecf8226e..20bc01f8e71 100644 --- a/lib/DebugInfo/DIContext.cpp +++ b/lib/DebugInfo/DIContext.cpp @@ -8,7 +8,7 @@ //===----------------------------------------------------------------------===// #include "llvm/DebugInfo/DIContext.h" -#include "DWARFContext.h" +#include "llvm/DebugInfo/DWARFContext.h" using namespace llvm; DIContext::~DIContext() {} diff --git a/lib/DebugInfo/DWARFAbbreviationDeclaration.cpp b/lib/DebugInfo/DWARFAbbreviationDeclaration.cpp index c3e570e14cc..2c9eff68b5b 100644 --- a/lib/DebugInfo/DWARFAbbreviationDeclaration.cpp +++ b/lib/DebugInfo/DWARFAbbreviationDeclaration.cpp @@ -7,7 +7,7 @@ // //===----------------------------------------------------------------------===// -#include "DWARFAbbreviationDeclaration.h" +#include "llvm/DebugInfo/DWARFAbbreviationDeclaration.h" #include "llvm/Support/Dwarf.h" #include "llvm/Support/Format.h" #include "llvm/Support/raw_ostream.h" diff --git a/lib/DebugInfo/DWARFAcceleratorTable.cpp b/lib/DebugInfo/DWARFAcceleratorTable.cpp index 703274de492..3d370b4906e 100644 --- a/lib/DebugInfo/DWARFAcceleratorTable.cpp +++ b/lib/DebugInfo/DWARFAcceleratorTable.cpp @@ -7,7 +7,7 @@ // //===----------------------------------------------------------------------===// -#include "DWARFAcceleratorTable.h" +#include "llvm/DebugInfo/DWARFAcceleratorTable.h" #include "llvm/Support/Dwarf.h" #include "llvm/Support/Format.h" diff --git a/lib/DebugInfo/DWARFCompileUnit.cpp b/lib/DebugInfo/DWARFCompileUnit.cpp index 33869d8c998..3ec2cf58e3f 100644 --- a/lib/DebugInfo/DWARFCompileUnit.cpp +++ b/lib/DebugInfo/DWARFCompileUnit.cpp @@ -7,7 +7,7 @@ // //===----------------------------------------------------------------------===// -#include "DWARFCompileUnit.h" +#include "llvm/DebugInfo/DWARFCompileUnit.h" #include "llvm/Support/Format.h" #include "llvm/Support/raw_ostream.h" diff --git a/lib/DebugInfo/DWARFContext.cpp b/lib/DebugInfo/DWARFContext.cpp index 9a2c7cc1962..37ba43f8c13 100644 --- a/lib/DebugInfo/DWARFContext.cpp +++ b/lib/DebugInfo/DWARFContext.cpp @@ -7,12 +7,12 @@ // //===----------------------------------------------------------------------===// -#include "DWARFContext.h" -#include "DWARFDebugArangeSet.h" -#include "DWARFAcceleratorTable.h" +#include "llvm/DebugInfo/DWARFContext.h" #include "llvm/ADT/SmallString.h" #include "llvm/ADT/StringSwitch.h" +#include "llvm/DebugInfo/DWARFDebugArangeSet.h" +#include "llvm/DebugInfo/DWARFAcceleratorTable.h" #include "llvm/Support/Compression.h" #include "llvm/Support/Dwarf.h" #include "llvm/Support/Format.h" diff --git a/lib/DebugInfo/DWARFDebugAbbrev.cpp b/lib/DebugInfo/DWARFDebugAbbrev.cpp index c1a088e9bab..6c9c9ebb74f 100644 --- a/lib/DebugInfo/DWARFDebugAbbrev.cpp +++ b/lib/DebugInfo/DWARFDebugAbbrev.cpp @@ -7,7 +7,7 @@ // //===----------------------------------------------------------------------===// -#include "DWARFDebugAbbrev.h" +#include "llvm/DebugInfo/DWARFDebugAbbrev.h" #include "llvm/Support/Format.h" #include "llvm/Support/raw_ostream.h" using namespace llvm; diff --git a/lib/DebugInfo/DWARFDebugArangeSet.cpp b/lib/DebugInfo/DWARFDebugArangeSet.cpp index c0a33ceaf24..d4bff90f656 100644 --- a/lib/DebugInfo/DWARFDebugArangeSet.cpp +++ b/lib/DebugInfo/DWARFDebugArangeSet.cpp @@ -7,7 +7,7 @@ // //===----------------------------------------------------------------------===// -#include "DWARFDebugArangeSet.h" +#include "llvm/DebugInfo/DWARFDebugArangeSet.h" #include "llvm/Support/Format.h" #include "llvm/Support/raw_ostream.h" #include diff --git a/lib/DebugInfo/DWARFDebugAranges.cpp b/lib/DebugInfo/DWARFDebugAranges.cpp index fe7e46d63ba..b825d83538c 100644 --- a/lib/DebugInfo/DWARFDebugAranges.cpp +++ b/lib/DebugInfo/DWARFDebugAranges.cpp @@ -7,10 +7,10 @@ // //===----------------------------------------------------------------------===// -#include "DWARFDebugAranges.h" -#include "DWARFCompileUnit.h" -#include "DWARFContext.h" -#include "DWARFDebugArangeSet.h" +#include "llvm/DebugInfo/DWARFDebugAranges.h" +#include "llvm/DebugInfo/DWARFCompileUnit.h" +#include "llvm/DebugInfo/DWARFContext.h" +#include "llvm/DebugInfo/DWARFDebugArangeSet.h" #include "llvm/Support/Format.h" #include "llvm/Support/raw_ostream.h" #include diff --git a/lib/DebugInfo/DWARFDebugFrame.cpp b/lib/DebugInfo/DWARFDebugFrame.cpp index dfa7e82224e..968a0ce01c9 100644 --- a/lib/DebugInfo/DWARFDebugFrame.cpp +++ b/lib/DebugInfo/DWARFDebugFrame.cpp @@ -7,7 +7,7 @@ // //===----------------------------------------------------------------------===// -#include "DWARFDebugFrame.h" +#include "llvm/DebugInfo/DWARFDebugFrame.h" #include "llvm/ADT/SmallString.h" #include "llvm/Support/DataTypes.h" #include "llvm/Support/Dwarf.h" diff --git a/lib/DebugInfo/DWARFDebugInfoEntry.cpp b/lib/DebugInfo/DWARFDebugInfoEntry.cpp index b16a53cbb78..22c27c72dab 100644 --- a/lib/DebugInfo/DWARFDebugInfoEntry.cpp +++ b/lib/DebugInfo/DWARFDebugInfoEntry.cpp @@ -7,10 +7,10 @@ // //===----------------------------------------------------------------------===// -#include "DWARFDebugInfoEntry.h" -#include "DWARFCompileUnit.h" -#include "DWARFContext.h" -#include "DWARFDebugAbbrev.h" +#include "llvm/DebugInfo/DWARFDebugInfoEntry.h" +#include "llvm/DebugInfo/DWARFCompileUnit.h" +#include "llvm/DebugInfo/DWARFContext.h" +#include "llvm/DebugInfo/DWARFDebugAbbrev.h" #include "llvm/DebugInfo/DWARFFormValue.h" #include "llvm/Support/DataTypes.h" #include "llvm/Support/Debug.h" diff --git a/lib/DebugInfo/DWARFDebugLine.cpp b/lib/DebugInfo/DWARFDebugLine.cpp index a6ee4616ae1..365a5220918 100644 --- a/lib/DebugInfo/DWARFDebugLine.cpp +++ b/lib/DebugInfo/DWARFDebugLine.cpp @@ -7,7 +7,7 @@ // //===----------------------------------------------------------------------===// -#include "DWARFDebugLine.h" +#include "llvm/DebugInfo/DWARFDebugLine.h" #include "llvm/Support/Dwarf.h" #include "llvm/Support/Format.h" #include "llvm/Support/Path.h" diff --git a/lib/DebugInfo/DWARFDebugLoc.cpp b/lib/DebugInfo/DWARFDebugLoc.cpp index e4aa5dcce27..05a987f7bbb 100644 --- a/lib/DebugInfo/DWARFDebugLoc.cpp +++ b/lib/DebugInfo/DWARFDebugLoc.cpp @@ -7,7 +7,7 @@ // //===----------------------------------------------------------------------===// -#include "DWARFDebugLoc.h" +#include "llvm/DebugInfo/DWARFDebugLoc.h" #include "llvm/Support/Compiler.h" #include "llvm/Support/Format.h" #include "llvm/Support/raw_ostream.h" diff --git a/lib/DebugInfo/DWARFDebugRangeList.cpp b/lib/DebugInfo/DWARFDebugRangeList.cpp index 07b23b32d1f..ce60deb57ee 100644 --- a/lib/DebugInfo/DWARFDebugRangeList.cpp +++ b/lib/DebugInfo/DWARFDebugRangeList.cpp @@ -7,7 +7,7 @@ // //===----------------------------------------------------------------------===// -#include "DWARFDebugRangeList.h" +#include "llvm/DebugInfo/DWARFDebugRangeList.h" #include "llvm/Support/Format.h" #include "llvm/Support/raw_ostream.h" diff --git a/lib/DebugInfo/DWARFFormValue.cpp b/lib/DebugInfo/DWARFFormValue.cpp index 69b97710a09..0ff8f2c58cb 100644 --- a/lib/DebugInfo/DWARFFormValue.cpp +++ b/lib/DebugInfo/DWARFFormValue.cpp @@ -8,10 +8,10 @@ //===----------------------------------------------------------------------===// #include "llvm/DebugInfo/DWARFFormValue.h" -#include "DWARFCompileUnit.h" -#include "DWARFContext.h" #include "llvm/ADT/ArrayRef.h" #include "llvm/ADT/StringRef.h" +#include "llvm/DebugInfo/DWARFCompileUnit.h" +#include "llvm/DebugInfo/DWARFContext.h" #include "llvm/Support/Debug.h" #include "llvm/Support/Dwarf.h" #include "llvm/Support/Format.h" diff --git a/lib/DebugInfo/DWARFTypeUnit.cpp b/lib/DebugInfo/DWARFTypeUnit.cpp index 303bf707067..6e93e28b0a1 100644 --- a/lib/DebugInfo/DWARFTypeUnit.cpp +++ b/lib/DebugInfo/DWARFTypeUnit.cpp @@ -7,7 +7,7 @@ // //===----------------------------------------------------------------------===// -#include "DWARFTypeUnit.h" +#include "llvm/DebugInfo/DWARFTypeUnit.h" #include "llvm/Support/Format.h" #include "llvm/Support/raw_ostream.h" diff --git a/lib/DebugInfo/DWARFUnit.cpp b/lib/DebugInfo/DWARFUnit.cpp index 82c45297662..395a179f14b 100644 --- a/lib/DebugInfo/DWARFUnit.cpp +++ b/lib/DebugInfo/DWARFUnit.cpp @@ -7,8 +7,8 @@ // //===----------------------------------------------------------------------===// -#include "DWARFUnit.h" -#include "DWARFContext.h" +#include "llvm/DebugInfo/DWARFUnit.h" +#include "llvm/DebugInfo/DWARFContext.h" #include "llvm/DebugInfo/DWARFFormValue.h" #include "llvm/Support/Dwarf.h" #include "llvm/Support/Path.h" -- 2.34.1