PPC::B and PPC::BCC's target operand may be an immediate.
[llvm/msp430.git] / test / FrontendC / 2002-07-30-SubregSetAssertion.c
blob6d4f9f62058166f57c5a447bc95c1ef14bf6c4a6
1 // RUN: %llvmgcc -S %s -o - | llvm-as -f -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;