blob: ae8d908210165ac8a6090a3021dec876c28d7a6e [file] [log] [blame]
Chris Lattner1787ee32006-01-13 22:05:36 +00001// PR691
Dan Gohman8a3f6442009-12-05 00:02:37 +00002// RUN: %llvmgcc %s -S -o - | opt -std-compile-opts | \
Reid Spencer1bb52e02007-02-09 15:15:21 +00003// RUN: llvm-dis | grep llvm.stacksave
Chris Lattner1787ee32006-01-13 22:05:36 +00004
5void test(int N) {
6 int i;
7 for (i = 0; i < N; ++i) {
8 int VLA[i];
9 external(VLA);
10 }
11}