blob: 3e450a4b936660f98cdbe305ee256b737c750869 [file] [log] [blame]
Dan Gohman2d65d352009-08-25 15:38:29 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002
3
4struct S { };
5
6int xxxx(int a) {
7 struct S comps[a];
8 comps[0];
9}
10