diff options
author | MartinNowack <martin.nowack@gmail.com> | 2013-12-06 02:47:22 -0800 |
---|---|---|
committer | MartinNowack <martin.nowack@gmail.com> | 2013-12-06 02:47:22 -0800 |
commit | 02fa9e4d83a04f50cb1ad24b543a2fd5002fa2f3 (patch) | |
tree | 0fea2f6750aa8cc139c4d55260b5cd8a0814bf33 /lib/Core/StatsTracker.cpp | |
parent | 6d19d31eed55e18709c95363beafe8f679d6070c (diff) | |
parent | 10c1cd55ff47d6c55294db3e13c255ae91dea962 (diff) | |
download | klee-02fa9e4d83a04f50cb1ad24b543a2fd5002fa2f3.tar.gz |
Merge pull request #72 from MartinNowack/deprecate_llvm28
Deprecate LLVM 2.8 and lower and remove support for it
Diffstat (limited to 'lib/Core/StatsTracker.cpp')
-rw-r--r-- | lib/Core/StatsTracker.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/Core/StatsTracker.cpp b/lib/Core/StatsTracker.cpp index b5f38b2e..8161a52c 100644 --- a/lib/Core/StatsTracker.cpp +++ b/lib/Core/StatsTracker.cpp @@ -47,19 +47,11 @@ #include "llvm/Support/CommandLine.h" #include "llvm/Support/CFG.h" #include "llvm/Support/raw_os_ostream.h" -#if LLVM_VERSION_CODE < LLVM_VERSION(2, 9) -#include "llvm/System/Process.h" -#else #include "llvm/Support/Process.h" -#endif -#if LLVM_VERSION_CODE < LLVM_VERSION(2, 9) -#include "llvm/System/Path.h" -#else #include "llvm/Support/Path.h" #if LLVM_VERSION_CODE >= LLVM_VERSION(3, 1) #include "llvm/Support/FileSystem.h" #endif -#endif #include <iostream> #include <fstream> @@ -305,9 +297,6 @@ void StatsTracker::stepInstruction(ExecutionState &es) { // // FIXME: This trick no longer works, we should fix this in the line // number propogation. -#if LLVM_VERSION_CODE < LLVM_VERSION(2, 7) - if (isa<DbgStopPointInst>(inst)) -#endif es.coveredLines[&ii.file].insert(ii.line); es.coveredNew = true; es.instsSinceCovNew = 1; |