blob: ae8d908210165ac8a6090a3021dec876c28d7a6e [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001// PR691
Dan Gohman2b62af22009-12-05 00:02:37 +00002// RUN: %llvmgcc %s -S -o - | opt -std-compile-opts | \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003// 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}