1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-24 13:33:37 +02:00
llvm-mirror/test/Regression/CFrontend/2002-07-30-SubregSetAssertion.c
Chris Lattner af02419459 Fix testcase
llvm-svn: 3182
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;
}