mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
af02419459
llvm-svn: 3182
11 lines
86 B
C
11 lines
86 B
C
|
|
union X {
|
|
void *B;
|
|
};
|
|
|
|
union X foo() {
|
|
union X A;
|
|
A.B = (void*)123;
|
|
return A;
|
|
}
|