1 // RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
3 /* In this testcase, the return value of foo() is being promotedto a register
8 union X
{ char X
; void *B
; int a
, b
, c
, d
;};
12 Global
.B
= (void*)123; /* Interesting part */
18 printf("0x%p", test
.B
);