PPC::B and PPC::BCC's target operand may be an immediate.
[llvm/msp430.git] / test / FrontendC / 2003-09-30-StructLayout.c
blob3a4016606ec7d0d254567ed15d15e56894109118
1 // RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
3 enum En {
4 ENUM_VAL
5 };
7 struct St {
8 unsigned char A;
9 enum En B;
10 unsigned char C;
11 enum En D;
12 float E;
16 void func(struct St* A) {
17 A->D = ENUM_VAL;