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/lib/ExecutionEngine | |
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/lib/ExecutionEngine')
4 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/ExecutionEngine/EventListenerCommon.h b/llvm/lib/ExecutionEngine/EventListenerCommon.h index 5d756ed062f..66645d7297e 100644 --- a/llvm/lib/ExecutionEngine/EventListenerCommon.h +++ b/llvm/lib/ExecutionEngine/EventListenerCommon.h @@ -15,7 +15,7 @@ #define EVENT_LISTENER_COMMON_H #include "llvm/ADT/DenseMap.h" -#include "llvm/DebugInfo.h" +#include "llvm/IR/DebugInfo.h" #include "llvm/IR/Metadata.h" #include "llvm/IR/ValueHandle.h" #include "llvm/Support/Path.h" diff --git a/llvm/lib/ExecutionEngine/IntelJITEvents/IntelJITEventListener.cpp b/llvm/lib/ExecutionEngine/IntelJITEvents/IntelJITEventListener.cpp index bfcbbc850c3..150ef1fff9f 100644 --- a/llvm/lib/ExecutionEngine/IntelJITEvents/IntelJITEventListener.cpp +++ b/llvm/lib/ExecutionEngine/IntelJITEvents/IntelJITEventListener.cpp @@ -16,7 +16,7 @@ #include "llvm/ExecutionEngine/JITEventListener.h" #define DEBUG_TYPE "amplifier-jit-event-listener" -#include "llvm/DebugInfo.h" +#include "llvm/IR/DebugInfo.h" #include "llvm/IR/Function.h" #include "llvm/IR/Metadata.h" #include "llvm/ADT/DenseMap.h" diff --git a/llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp b/llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp index b660f0149aa..64cee037a02 100644 --- a/llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp +++ b/llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp @@ -26,12 +26,12 @@ #include "llvm/CodeGen/MachineJumpTableInfo.h" #include "llvm/CodeGen/MachineModuleInfo.h" #include "llvm/CodeGen/MachineRelocation.h" -#include "llvm/DebugInfo.h" #include "llvm/ExecutionEngine/GenericValue.h" #include "llvm/ExecutionEngine/JITEventListener.h" #include "llvm/ExecutionEngine/JITMemoryManager.h" #include "llvm/IR/Constants.h" #include "llvm/IR/DataLayout.h" +#include "llvm/IR/DebugInfo.h" #include "llvm/IR/DerivedTypes.h" #include "llvm/IR/Module.h" #include "llvm/IR/ValueHandle.h" diff --git a/llvm/lib/ExecutionEngine/OProfileJIT/OProfileJITEventListener.cpp b/llvm/lib/ExecutionEngine/OProfileJIT/OProfileJITEventListener.cpp index f11df82b784..f71b3ea4a43 100644 --- a/llvm/lib/ExecutionEngine/OProfileJIT/OProfileJITEventListener.cpp +++ b/llvm/lib/ExecutionEngine/OProfileJIT/OProfileJITEventListener.cpp @@ -16,7 +16,7 @@ #include "llvm/ExecutionEngine/JITEventListener.h" #define DEBUG_TYPE "oprofile-jit-event-listener" -#include "llvm/DebugInfo.h" +#include "llvm/IR/DebugInfo.h" #include "llvm/IR/Function.h" #include "llvm/ADT/OwningPtr.h" #include "llvm/CodeGen/MachineFunction.h" |