blob: db92dab36e33c5808effe0f7bd3931e85afe669f [file] [log] [blame]
Eric Christopher85e51562011-07-26 22:17:02 +00001// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
2
David Blaikie218b7832015-02-27 19:18:17 +00003// CHECK: getelementptr inbounds i32, i32* %{{vla|[0-9]}}
Eric Christopher85e51562011-07-26 22:17:02 +00004extern void f(int *);
5int e(int m, int n) {
6 int x[n];
7 f(x);
8 return x[m];
9}