blob: dde5245989fb798636f0dbf439c98199bcfafbe6 [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
2
3// CHECK: getelementptr inbounds i32* %vla
4extern void f(int *);
5int e(int m, int n) {
6 int x[n];
7 f(x);
8 return x[m];
9}