new testcase

llvm-svn: 37087
diff --git a/llvm/test/CFrontend/nested-functions.c b/llvm/test/CFrontend/nested-functions.c
new file mode 100644
index 0000000..3ac984c
--- /dev/null
+++ b/llvm/test/CFrontend/nested-functions.c
@@ -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];
+  }
+}