1 // PR691 2 // RUN: %clang_cc1 -no-opaque-pointers %s -emit-llvm -o - | FileCheck %s 3 // CHECK: call i8* @llvm.stacksave() 4 5 extern void external(int[*]); 6 test(int N)7 void test(int N) { 8 int i; 9 for (i = 0; i < N; ++i) { 10 int VLA[i]; 11 external(VLA); 12 } 13 } 14