blob: 783b38858f1a7b3248d934c69e1f1f7319684e4d (
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 -O0 -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;
}
|