2011-07-27 06:17:02 +08:00
|
|
|
// PR691
|
2013-01-22 09:51:54 +08:00
|
|
|
// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
|
|
|
|
// CHECK: call i8* @llvm.stacksave()
|
2011-07-27 06:17:02 +08:00
|
|
|
|
|
|
|
void test(int N) {
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < N; ++i) {
|
|
|
|
int VLA[i];
|
|
|
|
external(VLA);
|
|
|
|
}
|
|
|
|
}
|