[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGen / 2006-01-13-StackSave.c
blob3c9d8e96de8455bb11db8f48799f76980a04c75c
1 // PR691
2 // RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
3 // CHECK: call ptr @llvm.stacksave()
5 extern void external(int[*]);
7 void test(int N) {
8 int i;
9 for (i = 0; i < N; ++i) {
10 int VLA[i];
11 external(VLA);