about summary refs log tree commit diff homepage
path: root/lib
diff options
context:
space:
mode:
authorAndrea Mattavelli <andreamattavelli@gmail.com>2017-02-13 11:58:10 +0000
committerAndrea Mattavelli <andreamattavelli@gmail.com>2017-02-13 11:58:10 +0000
commit82a2270921c204d2b11441e09861d113da83ecd3 (patch)
tree3ea19a13c5c1b12ff61a5a0dd9b0bbf91372166c /lib
parent3dd14b8de73b8662217dcb931b28f4e9ff823c4f (diff)
downloadklee-82a2270921c204d2b11441e09861d113da83ecd3.tar.gz
Increased the type size for the stop-after-n-instructions option to avoid too strict limitations
Diffstat (limited to 'lib')
-rw-r--r--lib/Core/Executor.cpp2
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));