fix test to not get a moduleid that matches 'br'
[llvm/avr.git] / test / FrontendC / 2002-07-30-SubregSetAssertion.c
blobaf72eda65242442891e2adb8288a22c6859a9f82
1 // RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
4 union X {
5 void *B;
6 };
8 union X foo() {
9 union X A;
10 A.B = (void*)123;
11 return A;