Add a test case for Chris lvalue alignment fixes.
[oota-llvm.git] / test / FrontendC / 2007-03-06-VarSizeInStruct2.c
1 // RUN: %llvmgcc %s -S -o -
2 char p (int n) {
3   struct f {
4     char w; char x[n]; char y[n];
5   } F;
6
7   return F.x[0];
8 }