]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.misc-tests/acker1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.misc-tests / acker1.c
diff --git a/gcc/testsuite/gcc.misc-tests/acker1.c b/gcc/testsuite/gcc.misc-tests/acker1.c
deleted file mode 100644 (file)
index aa9d106..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-#include <stdio.h>
-
-int acker(int, int);
-
-int
-main(void)
-{
-    int n = acker(3,6);
-    if (n != 509)
-       printf("acker(3,6) = %d != 509\n", n);
-    return(0);
-}
-
-int
-acker(int x,int y)
-{
-    if (x==0)
-       return(y+1);
-    else if (y==0)
-       return(acker(x-1,1));
-    else
-       return(acker(x-1, acker(x, y-1)));
-}