Add qdf24xx base tuning support.
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / tailrecursion-1.c
blobfd65c774daf555a64e22d31516ec51a173649e6d
1 /* { dg-do compile } */
2 /* { dg-options "-O1 -foptimize-sibling-calls -fdump-tree-tailr1-details" } */
3 int
4 t(int a)
6 if (a)
7 return t(a-1);
8 else
9 return 0;
11 /* { dg-final { scan-tree-dump-times "Eliminated tail recursion" 1 "tailr1"} } */