blob: 7c506b31f2a09c2e2706f18abc95e5edc0185772 [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// PR691
2// RUN: %clang_cc1 %s -emit-llvm -o - | opt -std-compile-opts | \
3// RUN: llvm-dis | grep llvm.stacksave
4
5void test(int N) {
6 int i;
7 for (i = 0; i < N; ++i) {
8 int VLA[i];
9 external(VLA);
10 }
11}