aboutsummaryrefslogtreecommitdiffstats
path: root/test/CFrontend/2007-02-16-VariableSizeStructArg.c
blob: fd07cd8176f5c9e9ecc204ce63e3525210b369c1 (plain)
1
2
3
4
5
6
7
// 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];
}