1 // RUN: %clang_cc1 -emit-llvm %s -o /dev/null
3 /* In this testcase, the return value of foo() is being promoted to a register
6 int printf(const char * restrict format
, ...);
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
);