Correct the vandc testcase
[oota-llvm.git] / test / CFrontend / 2006-01-13-StackSave.c
1 // RUN: %llvmgcc %s -S -o - | gccas | llvm-dis | grep llvm.stacksave
2 // XFAIL: *
3
4 // PR691
5
6 void test(int N) {
7   int i;
8   for (i = 0; i < N; ++i) {
9     int VLA[i];
10     external(VLA);
11   }
12 }