diff options
author | Bill Wendling <isanbard@gmail.com> | 2012-06-29 08:32:07 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2012-06-29 08:32:07 +0000 |
commit | f799efdedcb6257da6823ff8c427ba502edd2bc4 (patch) | |
tree | 517b9d7f4e656cb65e0466b69662041d2d1b0935 /llvm/unittests/ExecutionEngine/JIT | |
parent | 693344b505dbf06ee72f48d0dc4c135eec80e96b (diff) | |
download | bcm5719-llvm-f799efdedcb6257da6823ff8c427ba502edd2bc4.tar.gz bcm5719-llvm-f799efdedcb6257da6823ff8c427ba502edd2bc4.zip |
The DIBuilder class is just a wrapper around debug info creation
(a.k.a. MDNodes). The module doesn't belong in Analysis. Move it to the VMCore
instead.
llvm-svn: 159414
Diffstat (limited to 'llvm/unittests/ExecutionEngine/JIT')
-rw-r--r-- | llvm/unittests/ExecutionEngine/JIT/JITEventListenerTestCommon.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/ExecutionEngine/JIT/JITEventListenerTestCommon.h b/llvm/unittests/ExecutionEngine/JIT/JITEventListenerTestCommon.h index 41b09260e56..d0c7ae90915 100644 --- a/llvm/unittests/ExecutionEngine/JIT/JITEventListenerTestCommon.h +++ b/llvm/unittests/ExecutionEngine/JIT/JITEventListenerTestCommon.h @@ -11,9 +11,9 @@ #define JIT_EVENT_LISTENER_TEST_COMMON_H #include "llvm/DebugInfo.h" +#include "llvm/DIBuilder.h" #include "llvm/Instructions.h" #include "llvm/Module.h" -#include "llvm/Analysis/DIBuilder.h" #include "llvm/CodeGen/MachineCodeInfo.h" #include "llvm/Config/config.h" #include "llvm/ExecutionEngine/JIT.h" |