Home | History | Annotate | Download | only in FrontendC
      1 // RUN: %llvmgcc %s -S -o -
      2 char p (int n) {
      3   struct f {
      4     char w; char x[n]; char y[n];
      5   } F;
      6 
      7   return F.x[0];
      8 }
      9