about summary refs log tree commit diff homepage
path: root/test/ArrayOpt/test_hybrid.c
blob: 3b1ac1dca63b28ce8f704e98a11792a91b94f76f (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: %clang %s -emit-llvm %O0opt -c -o %t.bc
// RUN: rm -rf %t.klee-out
// RUN: %klee --write-kqueries --output-dir=%t.klee-out --optimize-array=index %t.bc > %t.log 2>&1
// RUN: FileCheck %s -input-file=%t.log -check-prefix=CHECK-OPT_I
// RUN: test -f %t.klee-out/test000001.kquery
// RUN: not FileCheck %s -input-file=%t.klee-out/test000001.kquery -check-prefix=CHECK-CONST_ARR

// CHECK-OPT_I: KLEE: WARNING: OPT_I: successful
// CHECK-CONST_ARR: const_arr

#include <stdio.h>
#include "klee/klee.h"

char array[10] = {1,2,2,4,5,3,1,3,2,2};

int main() {
  unsigned char k;
  
  klee_make_symbolic(&k, sizeof(k), "k");
  klee_assume(k < 10);
  
  // CHECK: Yes
  // CHECK-NEXT: No
  if (array[k] >= 1)
    printf("Yes\n");

  // CHECK: KLEE: done: completed paths = 1
  
  return 0;
}