Dan Gohman | 0d4bbf2 | 2009-08-25 15:38:29 +0000 | [diff] [blame] | 1 | // RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null |
Tanya Lattner | ca21187 | 2004-11-06 22:41:00 +0000 | [diff] [blame] | 2 | |
Chris Lattner | 649154c | 2004-06-19 01:08:12 +0000 | [diff] [blame] | 3 | |
4 | struct S { }; | ||||
5 | |||||
6 | int xxxx(int a) { | ||||
7 | struct S comps[a]; | ||||
8 | comps[0]; | ||||
9 | } | ||||
10 |