PPC::B and PPC::BCC's target operand may be an immediate.
[llvm/msp430.git] / test / FrontendC / 2003-06-22-UnionCrash.c
blobdab0716ae6304ff2e0b21847a3e815c762afbf63
1 // RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
3 struct Blend_Map_Entry {
4 union {
5 float Colour[5];
6 double Point_Slope[2];
7 } Vals;
8 };
10 void test(struct Blend_Map_Entry* Foo)