diff options
author | Andrea Mattavelli <andreamattavelli@users.noreply.github.com> | 2017-07-24 16:17:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-24 16:17:04 +0200 |
commit | 769bd87658d3445af6770cadb1fe50edea833d15 (patch) | |
tree | 685a818fd4a7336232168fde9b86eb229b23e730 /lib/Core/Memory.cpp | |
parent | 9fb2f5666d5f8c7c2f335fc8408883a0cf958964 (diff) | |
parent | 72ea2c66dd4da5971914dce334138f2d5f8db19a (diff) | |
download | klee-769bd87658d3445af6770cadb1fe50edea833d15.tar.gz |
Merge pull request #713 from MartinNowack/remove_llvm_29_33
Remove support for LLVM < 3.4
Diffstat (limited to 'lib/Core/Memory.cpp')
-rw-r--r-- | lib/Core/Memory.cpp | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/lib/Core/Memory.cpp b/lib/Core/Memory.cpp index 72f0a1fb..0d354bf3 100644 --- a/lib/Core/Memory.cpp +++ b/lib/Core/Memory.cpp @@ -19,15 +19,9 @@ #include "ObjectHolder.h" #include "MemoryManager.h" -#if LLVM_VERSION_CODE >= LLVM_VERSION(3, 3) -#include <llvm/IR/Function.h> -#include <llvm/IR/Instruction.h> -#include <llvm/IR/Value.h> -#else -#include <llvm/Function.h> -#include <llvm/Instruction.h> -#include <llvm/Value.h> -#endif +#include "llvm/IR/Function.h" +#include "llvm/IR/Instruction.h" +#include "llvm/IR/Value.h" #include "llvm/Support/CommandLine.h" #include "llvm/Support/raw_ostream.h" |