llvm-6502/test/FrontendC/2009-04-28-UnionArrayCrash.c

12 lines
144 B
C
Raw Normal View History

// RUN: %llvmgcc -S %s -o -
// PR4082
union U {
int I;
double F;
};
union U arr[] = { { .I = 4 }, { .F = 123.} };
union U *P = &arr[0];