mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-13 08:00:22 -04:00
12 lines
197 B
C
12 lines
197 B
C
// PR691
|
|
// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
|
|
// CHECK: call i8* @llvm.stacksave()
|
|
|
|
void test(int N) {
|
|
int i;
|
|
for (i = 0; i < N; ++i) {
|
|
int VLA[i];
|
|
external(VLA);
|
|
}
|
|
}
|