summaryrefslogtreecommitdiff
path: root/test/FrontendC/2009-04-28-UnionArrayCrash.c
blob: 75851d0f5c01ad6e32c3232d023ea10666ddced9 (plain)
1
2
3
4
5
6
7
8
9
10
11
// RUN: %llvmgcc -S %s -o - 
// PR4082
union U {
  int I;
  double F;
};

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