blob: fd07cd8176f5c9e9ecc204ce63e3525210b369c1 [file] [log] [blame]
// RUN: %llvmgcc -S %s -o -
// PR1170
int f(int a, struct {int b[a];} c) { return c.b[0]; }
int g(struct {int b[1];} c) {
return c.b[0];
}