2004-11-06 22:41:00 +00:00
|
|
|
// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
|
|
|
|
|
2002-08-02 16:26:08 +00: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() {
|
2005-04-23 21:26:11 +00:00
|
|
|
union X Global;
|
|
|
|
Global.B = (void*)123; /* Interesting part */
|
|
|
|
return Global;
|
2002-08-02 16:26:08 +00:00
|
|
|
}
|
|
|
|
|
2008-06-10 14:37:44 +00:00
|
|
|
int main() {
|
2005-04-23 21:26:11 +00:00
|
|
|
union X test = foo();
|
|
|
|
printf("0x%p", test.B);
|
2002-08-02 16:26:08 +00:00
|
|
|
}
|