Dale Johannesen | 6a02432 | 2008-06-10 18:00:09 +0000 | [diff] [blame] | 1 | // RUN: %llvmgcc -S -w %s -o - |
Chris Lattner | 7824cc6 | 2007-02-17 05:44:57 +0000 | [diff] [blame] | 2 | // PR1170 |
3 | int f(int a, struct {int b[a];} c) { return c.b[0]; } | ||||
4 | |||||
5 | int g(struct {int b[1];} c) { | ||||
6 | return c.b[0]; | ||||
7 | } |