diff options
author | Daniel Dunbar <daniel@zuster.org> | 2014-09-14 16:05:34 -0700 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2014-09-14 16:09:00 -0700 |
commit | c8c950a7e9ebca0dcc8fbf33c9683fe85f06337b (patch) | |
tree | 53df3dcaa5d1871e9e8d22610f6068ca6f3da2c7 /lib/Core/Searcher.cpp | |
parent | c3135ee38276a41f0d89487fada003522fa2df8e (diff) | |
download | klee-c8c950a7e9ebca0dcc8fbf33c9683fe85f06337b.tar.gz |
[LLVM3.5] Update for CallSite.h move into IR/.
Diffstat (limited to 'lib/Core/Searcher.cpp')
-rw-r--r-- | lib/Core/Searcher.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/Core/Searcher.cpp b/lib/Core/Searcher.cpp index 2610f17e..6191acb5 100644 --- a/lib/Core/Searcher.cpp +++ b/lib/Core/Searcher.cpp @@ -34,10 +34,15 @@ #include "llvm/Instructions.h" #include "llvm/Module.h" #endif -#include "llvm/Support/CallSite.h" #include "llvm/Support/CFG.h" #include "llvm/Support/CommandLine.h" +#if LLVM_VERSION_CODE < LLVM_VERSION(3, 5) +#include "llvm/Support/CallSite.h" +#else +#include "llvm/IR/CallSite.h" +#endif + #include <cassert> #include <fstream> #include <climits> |