1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 11:33:24 +02:00
llvm-mirror/test/FrontendC/2002-08-02-UnionTest.c

20 lines
391 B
C
Raw Normal View History

// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
2004-11-06 23:41:00 +01:00
2002-08-02 18:26:08 +02:00
/* In this testcase, the return value of foo() is being promotedto a register
* which breaks stuff
*/
#include <stdio.h>
union X { char X; void *B; int a, b, c, d;};
union X foo() {
union X Global;
Global.B = (void*)123; /* Interesting part */
return Global;
2002-08-02 18:26:08 +02:00
}
int main() {
union X test = foo();
printf("0x%p", test.B);
2002-08-02 18:26:08 +02:00
}