1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-02-18 14:31:27 +00:00
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];