blob: 7e9cf46a1739c5a3c6d049885b303b07dfddfb1a (
plain) (
blame)
1
2
3
4
5
6
7
8
|
// RUN: %llvmgcc %s -g -emit-llvm -O0 -c -o %t1.bc
// RUN: %klee --stop-after-n-instructions=1 --dump-states-on-halt=true %t1.bc
// RUN: test -f klee-last/test000001.bout
int main() {
int x = 10;
return x;
}
|