1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 06:22:51 +01:00
llvm-mirror/test/Regression/CFrontend/2002-07-30-SubregSetAssertion.c
Chris Lattner 199f82ce4b Simplify testcase a bit
llvm-svn: 3150
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
}