Print vector types appropriately. This gets basic vector code working
[oota-llvm.git] / test / CFrontend / 2007-03-06-VarSizeInStruct1.c
1 // RUN: %llvmgcc %s -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 }