| Dan Gohman | fea1dd0 | 2009-08-25 15:38:29 +0000 | [diff] [blame] | 1 | // RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null |
| Tanya Lattner | e9af5d1 | 2004-11-06 22:41:00 +0000 | [diff] [blame] | 2 | |
| Chris Lattner | 553a7ab | 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 | |||||