blob: 8d28a1dbd58a691a0a64daee159778218118ca92 [file] [log] [blame]
// RUN: %llvmgcc %s -S -o -
void* p (int n) {
struct f {
char w; char x[n]; char z[];
} F;
F.x[0]='x';
return &F;
}