blob: a1812062141a95756e4ab88152cf37faae9c91ca (
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
 | // RUN: %llvmgcc %s -emit-llvm -O0 -c -o %t1.bc
// RUN: %klee %t1.bc
#include <assert.h>
int main() {
  int a;
  unsigned char *p = malloc(4);
  klee_make_symbolic(&a, sizeof a);
  klee_make_symbolic(p, sizeof 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;
}
 |