1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-02-13 10:32:06 +00:00
llvm-6502/test/CFrontend/2002-07-30-SubregSetAssertion.c
Chris Lattner e540dda536 Fix testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3182 91177308-0d34-0410-b5e6-96231b3b80d8
2002-07-31 17:54:24 +00:00

11 lines
86 B
C

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