hanchenye-llvm-project/llvm/test/Regression/CFrontend/2002-07-30-SubregSetAsserti...

13 lines
141 B
C
Raw Normal View History

2004-11-07 06:41:00 +08:00
// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
union X {
void *B;
};
2002-08-01 01:54:24 +08:00
union X foo() {
2002-07-30 14:07:16 +08:00
union X A;
2002-08-01 01:54:24 +08:00
A.B = (void*)123;
return A;
}