blob: fd07cd8176f5c9e9ecc204ce63e3525210b369c1 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001// RUN: %llvmgcc -S %s -o -
2// PR1170
3int f(int a, struct {int b[a];} c) { return c.b[0]; }
4
5int g(struct {int b[1];} c) {
6 return c.b[0];
7}