summaryrefslogtreecommitdiff
path: root/klee/test/Feature/MakeSymbolicName.c
blob: a31b4a9b8d2174e18d6c7d733466c329ae4ab7c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// RUN: %llvmgcc %s -emit-llvm -g -c -o %t1.bc
// RUN: %klee --search=random-state --exit-on-error %t1.bc

#include <assert.h>

int main() {
  int a[4] = {1, 2, 3, 4};
  unsigned i;

  klee_make_symbolic(&i, sizeof(i), "index");  
  if (i > 3)
    klee_silent_exit(0);

  assert(a[i] << 1 != 5);
  if (a[i] << 1 == 6)
    assert(i == 2);
}