diff options
author | Jiri Slaby <jirislaby@gmail.com> | 2019-11-04 07:55:51 +0100 |
---|---|---|
committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2019-11-05 16:07:41 +0000 |
commit | 0633bda59056fa82d506d1b08e3e93be7ab3cfb3 (patch) | |
tree | c3a5385f94693c0671b97ad038b251fb9cba3ba7 | |
parent | 0dee67bf09a16c51f951bb6d659eb0baaae94126 (diff) | |
download | klee-0633bda59056fa82d506d1b08e3e93be7ab3cfb3.tar.gz |
Core: Executor, remove unused variable
numSeeds is unused since commit 4eb050e2999b (ExecutorTimers: refactor and move to support lib), so remove it.
-rw-r--r-- | lib/Core/Executor.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Core/Executor.cpp b/lib/Core/Executor.cpp index 4ac848b0..7ea3aa3b 100644 --- a/lib/Core/Executor.cpp +++ b/lib/Core/Executor.cpp @@ -2910,7 +2910,6 @@ void Executor::run(ExecutionState &initialState) { if (it == seedMap.end()) it = seedMap.begin(); lastState = it->first; - unsigned numSeeds = it->second.size(); ExecutionState &state = *lastState; KInstruction *ki = state.pc; stepInstruction(state); |