freebsd_amp_hwpstate/test/FrontendC/2003-01-30-UnionInit.c

9 lines
115 B
C

// RUN: %llvmgcc -S %s -o /dev/null
union foo {
struct { char A, B; } X;
int C;
};
union foo V = { {1, 2} };