1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 04:22:57 +02:00
llvm-mirror/test/CFrontend/2006-01-13-StackSave.c

12 lines
215 B
C
Raw Normal View History

2006-01-13 23:05:36 +01:00
// PR691
// RUN: %llvmgcc %s -S -o - | llvm-as | opt -std-compile-opts | \
// RUN: llvm-dis | grep llvm.stacksave
2006-01-13 23:05:36 +01:00
void test(int N) {
int i;
for (i = 0; i < N; ++i) {
int VLA[i];
external(VLA);
}
}