Home | History | Annotate | Download | only in FrontendC
      1 // RUN: %llvmgcc -S -w %s -o -
      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 }
      8