aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/tailrecursion-6.c
blob: 38fa1042cbcb0e9eb1b48a0f3321fa0bc64237bc (plain)
1
2
3
4
5
6
7
8
9
10
11
/* { dg-do compile } */
/* { dg-options "-O1 -foptimize-sibling-calls -fdump-tree-tailr1-details" } */
int
foo (int a)
{
	if (a)
		return a * (2 * (foo (a - 1))) + a + 1;
	else
		return 0;
}
/* { dg-final { scan-tree-dump-times "Eliminated tail recursion" 1 "tailr1"} } */