mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 07:22:55 +01:00
285ca9f1dd
llvm-svn: 25298
13 lines
189 B
C
13 lines
189 B
C
// RUN: %llvmgcc %s -S -o - | gccas | llvm-dis | grep llvm.stacksave
|
|
// XFAIL: *
|
|
|
|
// PR691
|
|
|
|
void test(int N) {
|
|
int i;
|
|
for (i = 0; i < N; ++i) {
|
|
int VLA[i];
|
|
external(VLA);
|
|
}
|
|
}
|