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

9 lines
115 B
C
Raw Normal View History

2009-06-02 17:52:33 +00:00
// RUN: %llvmgcc -S %s -o /dev/null
union foo {
struct { char A, B; } X;
int C;
};
union foo V = { {1, 2} };