Commit e6a85421 by Richard Sandiford Committed by Richard Sandiford

re PR middle-end/21964 (broken tail call at -O2 or more)

	PR middle-end/21964
	* gcc.c-torture/execute/pr21964-1.c: New test.

From-SVN: r102850
parent 7a7c5ab0
2005-08-08 Richard Sandiford <richard@codesourcery.com>
PR middle-end/21964
* gcc.c-torture/execute/pr21964-1.c: New test.
2005-08-08 Richard Sandiford <richard@codesourcery.com>
PR c/22458
* gcc.dg/pr22458-1.c: New test.
......
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);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment