]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
This commit was manufactured by cvs2svn to create branch
authorNo Author <no-author@gcc.gnu.org>
Mon, 8 Aug 2005 07:49:09 +0000 (07:49 +0000)
committerNo Author <no-author@gcc.gnu.org>
Mon, 8 Aug 2005 07:49:09 +0000 (07:49 +0000)
'gcc-3_4-branch'.

From-SVN: r102853

gcc/testsuite/gcc.c-torture/execute/pr21964-1.c [new file with mode: 0644]

diff --git a/gcc/testsuite/gcc.c-torture/execute/pr21964-1.c b/gcc/testsuite/gcc.c-torture/execute/pr21964-1.c
new file mode 100644 (file)
index 0000000..b7e1e0d
--- /dev/null
@@ -0,0 +1,16 @@
+void
+foo (int n, int m)
+{
+  if (m == 0)
+    exit (0);
+  else if (n != 0)
+    abort ();
+  else
+    foo (n++, m - 1);
+}
+int
+main (void)
+{
+  foo (0, 4);
+}