about summary refs log tree commit diff homepage
path: root/test/regression/2007-07-30-unflushed-byte.c
blob: bb480b9ac06f30fc2f818504788677067929d724 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// RUN: %clang %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() {
  char i, x[3];

  klee_make_symbolic(&i, sizeof i, "i");

  x[0] = i;

  // DEMAND FAILED:Memory.cpp:read8:199: <isByteFlushed(offset)> is false: "unflushed byte without cache value"
  char y =  x[1];

  return 0;
}