In PIC mode, GV not requiring an extra load can be used as address immediate.
[oota-llvm.git] / test / CFrontend / 2003-01-30-UnionInit.c
1 // RUN: %llvmgcc -S %s -o /dev/null
2 // XFAIL: llvmgcc3
3
4 union foo {
5   struct { char A, B; } X;
6   int C;
7 };
8
9 union foo V = { {1, 2} };