New testcase, for PR 115
[oota-llvm.git] / test / CFrontend / 2002-07-30-SubregSetAssertion.c
1
2 union X {
3   void *B;
4 };
5
6 union X foo() {
7         union X A;
8         A.B = (void*)123;
9         return A;
10 }