Home | History | Annotate | Download | only in FrontendC
      1 // RUN: %llvmgcc -S %s -o - | grep {getelementptr inbounds \\\[0 x i32\\\]}
      2 extern void f(int *);
      3 int e(int m, int n) {
      4   int x[n];
      5   f(x);
      6   return x[m];
      7 }
      8