Pull out this predicate loop into a helper function.
[oota-llvm.git] / test / FrontendC / 2007-03-06-VarSizeInStruct1.c
1 // RUN: %llvmgcc %s -w -S -o -
2 void* p (int n) {
3   struct f {
4     char w; char x[n]; char z[];
5   } F;
6   F.x[0]='x';
7   return &F;
8 }