PPC::B and PPC::BCC's target operand may be an immediate.
[llvm/msp430.git] / test / FrontendC / 2003-01-30-UnionInit.c
blob576958442aece266683da089458777a4b2fc7865
1 // RUN: %llvmgcc -S %s -o /dev/null
3 union foo {
4 struct { char A, B; } X;
5 int C;
6 };
8 union foo V = { {1, 2} };