blob: 3e450a4b936660f98cdbe305ee256b737c750869 [file] [log] [blame]
Dan Gohmanfea1dd02009-08-25 15:38:29 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
Tanya Lattnere9af5d12004-11-06 22:41:00 +00002
Chris Lattner553a7ab2004-06-19 01:08:12 +00003
4struct S { };
5
6int xxxx(int a) {
7 struct S comps[a];
8 comps[0];
9}
10