blob: 7eab19b045624c1953fac0ac9f077c74e0e76869 [file] [log] [blame]
Tanya Lattnere9af5d12004-11-06 22:41:00 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
2
Chris Lattnera7e2dd42002-07-30 06:05:40 +00003
4union X {
Chris Lattnera7e2dd42002-07-30 06:05:40 +00005 void *B;
6};
7
Chris Lattnere540dda2002-07-31 17:54:24 +00008union X foo() {
Chris Lattnerf40e0c42002-07-30 06:07:16 +00009 union X A;
Chris Lattnere540dda2002-07-31 17:54:24 +000010 A.B = (void*)123;
11 return A;
Chris Lattnera7e2dd42002-07-30 06:05:40 +000012}