llvm-mirror/test/Regression/CFrontend/2003-01-30-UnionInit.c
Tanya Lattner adb6e09ea7 Adding RUN lines.
llvm-svn: 17532
2004-11-06 22:41:00 +00:00

11 lines
161 B
C

// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
// XFAIL: linux,sun,darwin
union foo {
struct { char A, B; } X;
int C;
};
union foo V = { {1, 2} };