mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-12 07:41:14 +00:00
13 lines
196 B
C
13 lines
196 B
C
// RUN: %llvmgcc %s -S -o - | gccas | llvm-dis | grep llvm.stacksave
|
|
// XFAIL: llvmgcc3
|
|
|
|
// PR691
|
|
|
|
void test(int N) {
|
|
int i;
|
|
for (i = 0; i < N; ++i) {
|
|
int VLA[i];
|
|
external(VLA);
|
|
}
|
|
}
|