diff options
author | Cristian Cadar <cristic@cs.stanford.edu> | 2013-04-04 11:50:07 +0000 |
---|---|---|
committer | Cristian Cadar <cristic@cs.stanford.edu> | 2013-04-04 11:50:07 +0000 |
commit | cba6931381ef9cc71ea1692ea860848c3f3f4c99 (patch) | |
tree | 406211905ed194974707610f2c4173a3ac4605f9 /lib/Module/IntrinsicCleaner.cpp | |
parent | 7d8fdac598ad879ce973667df53c7acbead1ba2e (diff) | |
download | klee-cba6931381ef9cc71ea1692ea860848c3f3f4c99.tar.gz |
Patch by Michael Contreras and Jiri Slaby for compiling KLEE with LLVM 3.2
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@178759 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Module/IntrinsicCleaner.cpp')
-rw-r--r-- | lib/Module/IntrinsicCleaner.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Module/IntrinsicCleaner.cpp b/lib/Module/IntrinsicCleaner.cpp index fd0db91d..b897fcc7 100644 --- a/lib/Module/IntrinsicCleaner.cpp +++ b/lib/Module/IntrinsicCleaner.cpp @@ -23,7 +23,11 @@ #include "llvm/Module.h" #include "llvm/Pass.h" #include "llvm/Type.h" +#if LLVM_VERSION_CODE >= LLVM_VERSION(3, 2) +#include "llvm/IRBuilder.h" +#else #include "llvm/Support/IRBuilder.h" +#endif #include "llvm/Transforms/Scalar.h" #include "llvm/Transforms/Utils/BasicBlockUtils.h" #if LLVM_VERSION_CODE <= LLVM_VERSION(3, 1) |