For PR1338: Rename test dirs
[oota-llvm.git] / test / CFrontend / nested-functions.c
diff --git a/test/CFrontend/nested-functions.c b/test/CFrontend/nested-functions.c
deleted file mode 100644 (file)
index bccbef3..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-// RUN: %llvmgcc -S %s -o -  -fnested-functions
-// PR1274
-
-void Bork() {
-  void Fork(const int *src, int size) {
-    int i = 1;
-    int x;
-
-    while (i < size)
-      x = src[i];
-  }
-}
-
-void foo(void *a){
-  inline void foo_bar() {
-    a += 1;
-  }
-}