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 | 16eeb6f5ebc978b03745177b9ac82684ab1c6932 (patch) | |
tree | 9ff2f80e3dd322d424a706d7d83950446da85d78 /unittests | |
parent | 3e4b3b9043b1ced24e07d8d1174feeee06c6912e (diff) | |
download | external_llvm-16eeb6f5ebc978b03745177b9ac82684ab1c6932.zip external_llvm-16eeb6f5ebc978b03745177b9ac82684ab1c6932.tar.gz external_llvm-16eeb6f5ebc978b03745177b9ac82684ab1c6932.tar.bz2 |
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.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@159414 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests')
-rw-r--r-- | unittests/ExecutionEngine/JIT/JITEventListenerTestCommon.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/ExecutionEngine/JIT/JITEventListenerTestCommon.h b/unittests/ExecutionEngine/JIT/JITEventListenerTestCommon.h index 41b0926..d0c7ae9 100644 --- a/unittests/ExecutionEngine/JIT/JITEventListenerTestCommon.h +++ b/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" |