about summary refs log tree commit diff homepage
path: root/test/regression/2015-06-22-struct-write.c
blob: 6efc4ee6df839e50c083aec2267a1f1bb992ca68 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// RUN: %llvmgcc %s -emit-llvm -g -O0 -c -o %t.bc
// RUN: rm -rf %t.klee-out
// RUN: %klee --output-dir=%t.klee-out -exit-on-error %t.bc

#include <assert.h>
#include <klee/klee.h>

union U0 {
	signed f3 :18;
};

static union U0 u = { 0UL };

int main(int argc, char **argv) {
  u.f3 = 534;

  klee_assert(u.f3 == 534);

  return 0;
}