new testcase

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37087 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2007-05-15 20:29:56 +00:00
parent b5bb7ffa9c
commit decc20930d

View File

@ -0,0 +1,10 @@
// 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];
}
}