blob: fa06a2697c21c68d847ce722b1f499cbd136ee5e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
// RUN: %llvmgcc %s -emit-llvm %O0opt -c -o %t1.bc
// RUN: rm -rf %t1.out %t1.replay
// RUN: %klee --output-dir=%t1.out %t1.bc
// RUN: %klee --output-dir=%t1.replay --replay-ktest-dir=%t1.out %t1.bc
int main() {
int i;
klee_make_symbolic(&i, sizeof i, "i");
klee_print_range("i", i);
return 0;
}
|