New testcase found when working on union support *sigh*
[oota-llvm.git] / test / CFrontend / 2002-07-30-SubregSetAssertion.c
1
2 union X {
3   //char C;
4   //int A;
5   void *B;
6 };
7
8 union X foo(union X A) {
9         //A.C = 123;
10         //A.A = 39249;
11         A.B = (void*)123040123321;
12         return A;
13 }