1 2 3 4 5 6 7 8
// RUN: %llvmgcc %s -w -S -o - void* p (int n) { struct f { char w; char x[n]; char z[]; } F; F.x[0]='x'; return &F; }