llvm-6502/test/CFrontend/2002-07-30-SubregSetAssertion.c
Chris Lattner f40e0c4472 Simplify testcase a bit
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3150 91177308-0d34-0410-b5e6-96231b3b80d8
2002-07-30 06:07:16 +00:00

10 lines
79 B
C

union X {
void *B;
};
union X void foo() {
union X A;
A.B = (void*)123
}