blob: bba7b97cb1ab454c8f2b6f38ccd6c6799e04e93f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
// RUN: %llvmgcc %s -emit-llvm %O0opt -c -o %t1.bc
// RUN: rm -rf %t.klee-out
// RUN: %klee --output-dir=%t.klee-out %t1.bc
#include <assert.h>
int main() {
int a;
unsigned char *p = malloc(4);
klee_make_symbolic(&a, sizeof a, "a");
klee_make_symbolic(p, sizeof p, "p");
p[0] |= 16;
if (a) {
free(p);
// this should give an error instead of
// pulling the state from the parent, where
// it is not free
assert(p[0] > 10);
return 0;
}
assert(p[0] > 10);
return 0;
}
|