diff options
| author | Chandler Carruth <chandlerc@gmail.com> | 2014-03-06 00:46:21 +0000 |
|---|---|---|
| committer | Chandler Carruth <chandlerc@gmail.com> | 2014-03-06 00:46:21 +0000 |
| commit | 9a4c9e597baeda303b21547a26b17224c6d470e9 (patch) | |
| tree | 03fbbb58180469d8e2995b95e83db52505c165cf /llvm/tools | |
| parent | 7f908e8ef410c0ac567e26cbefb80bf5a00781f9 (diff) | |
| download | bcm5719-llvm-9a4c9e597baeda303b21547a26b17224c6d470e9.tar.gz bcm5719-llvm-9a4c9e597baeda303b21547a26b17224c6d470e9.zip | |
[Layering] Move DebugInfo.h into the IR library where its implementation
already lives.
llvm-svn: 203046
Diffstat (limited to 'llvm/tools')
| -rw-r--r-- | llvm/tools/llvm-dis/llvm-dis.cpp | 2 | ||||
| -rw-r--r-- | llvm/tools/opt/BreakpointPrinter.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/tools/llvm-dis/llvm-dis.cpp b/llvm/tools/llvm-dis/llvm-dis.cpp index f25b040a81f..b1263d5cc9d 100644 --- a/llvm/tools/llvm-dis/llvm-dis.cpp +++ b/llvm/tools/llvm-dis/llvm-dis.cpp @@ -18,8 +18,8 @@ #include "llvm/IR/LLVMContext.h" #include "llvm/Bitcode/ReaderWriter.h" -#include "llvm/DebugInfo.h" #include "llvm/IR/AssemblyAnnotationWriter.h" +#include "llvm/IR/DebugInfo.h" #include "llvm/IR/IntrinsicInst.h" #include "llvm/IR/Module.h" #include "llvm/IR/Type.h" diff --git a/llvm/tools/opt/BreakpointPrinter.cpp b/llvm/tools/opt/BreakpointPrinter.cpp index 2b7f21893a4..66e93fde380 100644 --- a/llvm/tools/opt/BreakpointPrinter.cpp +++ b/llvm/tools/opt/BreakpointPrinter.cpp @@ -13,7 +13,7 @@ //===----------------------------------------------------------------------===// #include "BreakpointPrinter.h" #include "llvm/ADT/StringSet.h" -#include "llvm/DebugInfo.h" +#include "llvm/IR/DebugInfo.h" #include "llvm/IR/Module.h" #include "llvm/Pass.h" #include "llvm/Support/raw_ostream.h" |

