summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/2009-04-28-UnionArrayCrash.c
blob: 4296b918cbcc8983bd1d6a1e1c22406378829d77 (plain)
1
2
3
4
5
6
7
8
9
10
11
// RUN: %clang_cc1 -emit-llvm %s -o - 
// PR4082
union U {
  int I;
  double F;
};

union U arr[] = { { .I = 4 }, { .F = 123.} };
union U *P = &arr[0];