blob: 3ac984c3bce955c4df919e51c17d144ae62b3dc4 [file] [log] [blame]
// 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];
}
}