remove the "old" at&t style asmprinter. Unfortunately, most of the
[llvm/avr.git] / test / FrontendC / 2003-09-30-StructLayout.c
blob177d1f49b2fb9f53666cd430b52d83d2289c0857
1 // RUN: %llvmgcc -S %s -o - | llvm-as -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;