xref: /aosp_15_r20/external/clang/test/CodeGen/2006-01-13-StackSave.c (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 // PR691
2 // RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
3 // CHECK: call i8* @llvm.stacksave()
4 
test(int N)5 void test(int N) {
6   int i;
7   for (i = 0; i < N; ++i) {
8     int VLA[i];
9     external(VLA);
10   }
11 }
12