diff options
Diffstat (limited to 'runtime/klee-libc')
-rw-r--r-- | runtime/klee-libc/klee-choose.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/runtime/klee-libc/klee-choose.c b/runtime/klee-libc/klee-choose.c deleted file mode 100644 index 44e5cea2..00000000 --- a/runtime/klee-libc/klee-choose.c +++ /dev/null @@ -1,20 +0,0 @@ -/*===-- klee-choose.c -----------------------------------------------------===// -// -// The KLEE Symbolic Virtual Machine -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===*/ - -#include "klee/klee.h" - -uintptr_t klee_choose(uintptr_t n) { - uintptr_t x; - klee_make_symbolic(&x, sizeof x, "klee_choose"); - - /* NB: this will *not* work if they don't compare to n values. */ - if(x >= n) - klee_silent_exit(0); - return x; -} |