For PR1338: Rename test dirs
[oota-llvm.git] / test / FrontendC / 2007-04-05-UnPackedStruct.c
1 // RUN: %llvmgcc %s -S -o -
2
3
4 enum {
5   tA = 0,
6   tB = 1
7 };
8
9 struct MyStruct {
10   unsigned long A;
11   void * B;
12 };
13
14 void bar(){
15 struct MyStruct MS = { tB, 0 };
16 }