14 lines
231 B
C
14 lines
231 B
C
|
// PR691
|
||
|
// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
|
||
|
// CHECK: call ptr @llvm.stacksave.p0()
|
||
|
|
||
|
extern void external(int[*]);
|
||
|
|
||
|
void test(int N) {
|
||
|
int i;
|
||
|
for (i = 0; i < N; ++i) {
|
||
|
int VLA[i];
|
||
|
external(VLA);
|
||
|
}
|
||
|
}
|