1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 12:33:33 +02:00
llvm-mirror/test/CFrontend/nested-functions.c

11 lines
174 B
C
Raw Normal View History

2007-05-15 22:29:56 +02:00
// RUN: %llvmgcc -S %s -o - -fnested-functions
void Bork() {
void Fork(const int *src, int size) {
int i = 1;
int x;
while (i < size)
x = src[i];
}
}