blob: 8d28a1dbd58a691a0a64daee159778218118ca92 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001// RUN: %llvmgcc %s -S -o -
2void* 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}