diff options
author | Cristian Cadar <c.cadar@imperial.ac.uk> | 2017-02-13 13:04:59 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-13 13:04:59 +0000 |
commit | 16a21189ba8718e86eea8dba744807c66c8a4d6b (patch) | |
tree | 3ea19a13c5c1b12ff61a5a0dd9b0bbf91372166c | |
parent | 3dd14b8de73b8662217dcb931b28f4e9ff823c4f (diff) | |
parent | 82a2270921c204d2b11441e09861d113da83ecd3 (diff) | |
download | klee-16a21189ba8718e86eea8dba744807c66c8a4d6b.tar.gz |
Merge pull request #587 from andreamattavelli/fix_stop_instructions
Increased the type size for the stop-after-n-instructions option to a…
-rw-r--r-- | lib/Core/Executor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Core/Executor.cpp b/lib/Core/Executor.cpp index c369b864..f8211bfe 100644 --- a/lib/Core/Executor.cpp +++ b/lib/Core/Executor.cpp @@ -290,7 +290,7 @@ namespace { clEnumValEnd), cl::ZeroOrMore); - cl::opt<unsigned int> + cl::opt<unsigned long long> StopAfterNInstructions("stop-after-n-instructions", cl::desc("Stop execution after specified number of instructions (default=0 (off))"), cl::init(0)); |