new testcase

llvm-svn: 37087
This commit is contained in:
Chris Lattner 2007-05-15 20:29:56 +00:00
parent 3f142cbca2
commit df341b48a3
1 changed files with 10 additions and 0 deletions

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];
}
}