blob: 6476f32fb6c63e617ef258e7dfbb84515e9ada12 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
// RUN: %clang %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;
}
|