f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
11 lines
197 B
C
11 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);
|
|
}
|
|
}
|