hanchenye-llvm-project/llvm/test/FrontendC/2009-04-28-UnionArrayCrash.c

12 lines
144 B
C
Raw Normal View History

2009-04-29 14:46:27 +08:00
// RUN: %llvmgcc -S %s -o -
// PR4082
union U {
int I;
double F;
};
union U arr[] = { { .I = 4 }, { .F = 123.} };
union U *P = &arr[0];