mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-11 15:26:07 +00:00
13 lines
141 B
C
13 lines
141 B
C
// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
|
|
|
|
|
|
union X {
|
|
void *B;
|
|
};
|
|
|
|
union X foo() {
|
|
union X A;
|
|
A.B = (void*)123;
|
|
return A;
|
|
}
|