diff options
author | Bill Wendling <isanbard@gmail.com> | 2012-06-28 00:05:13 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2012-06-28 00:05:13 +0000 |
commit | e38859dc8e8c89a8776da7384137097a7854339b (patch) | |
tree | bbace121205b096817265c42dead7c6e3a2a8d26 /llvm/unittests/ExecutionEngine | |
parent | fd3a5e33d50dd4ef0b6a2f8ab8cd03554747cc27 (diff) | |
download | bcm5719-llvm-e38859dc8e8c89a8776da7384137097a7854339b.tar.gz bcm5719-llvm-e38859dc8e8c89a8776da7384137097a7854339b.zip |
Move lib/Analysis/DebugInfo.cpp to lib/VMCore/DebugInfo.cpp and
include/llvm/Analysis/DebugInfo.h to include/llvm/DebugInfo.h.
The reasoning is because the DebugInfo module is simply an interface to the
debug info MDNodes and has nothing to do with analysis.
llvm-svn: 159312
Diffstat (limited to 'llvm/unittests/ExecutionEngine')
-rw-r--r-- | llvm/unittests/ExecutionEngine/JIT/JITEventListenerTestCommon.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/unittests/ExecutionEngine/JIT/JITEventListenerTestCommon.h b/llvm/unittests/ExecutionEngine/JIT/JITEventListenerTestCommon.h index 53608cbfce3..41b09260e56 100644 --- a/llvm/unittests/ExecutionEngine/JIT/JITEventListenerTestCommon.h +++ b/llvm/unittests/ExecutionEngine/JIT/JITEventListenerTestCommon.h @@ -10,14 +10,14 @@ #ifndef JIT_EVENT_LISTENER_TEST_COMMON_H #define JIT_EVENT_LISTENER_TEST_COMMON_H +#include "llvm/DebugInfo.h" +#include "llvm/Instructions.h" +#include "llvm/Module.h" #include "llvm/Analysis/DIBuilder.h" -#include "llvm/Analysis/DebugInfo.h" #include "llvm/CodeGen/MachineCodeInfo.h" #include "llvm/Config/config.h" #include "llvm/ExecutionEngine/JIT.h" #include "llvm/ExecutionEngine/JITEventListener.h" -#include "llvm/Instructions.h" -#include "llvm/Module.h" #include "llvm/Support/IRBuilder.h" #include "llvm/Support/Dwarf.h" #include "llvm/Support/TypeBuilder.h" |