From 07cb4ee60459ebec039166609bd829933470b659 Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Wed, 22 Apr 2015 10:20:32 +0200 Subject: [PATCH] tree-tailcall.c (suitable_for_tail_opt_p, [...]): Remove unneeded forward declarations. 2015-04-22 Bernhard Reutner-Fischer * tree-tailcall.c (suitable_for_tail_opt_p, find_tail_calls): Remove unneeded forward declarations. (suitable_for_tail_call_opt_p): Commentary typo fix. From-SVN: r222312 --- gcc/ChangeLog | 6 ++++++ gcc/tree-tailcall.c | 4 +--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6dcf7d087f2..3eb1260d75f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2015-04-22 Bernhard Reutner-Fischer + + * tree-tailcall.c (suitable_for_tail_opt_p, find_tail_calls): + Remove unneeded forward declarations. + (suitable_for_tail_call_opt_p): Commentary typo fix. + 2015-04-22 Bernhard Reutner-Fischer * varasm.c (emit_bss): Remove redundant guard. diff --git a/gcc/tree-tailcall.c b/gcc/tree-tailcall.c index 1d065fb17a8..013972dbfdd 100644 --- a/gcc/tree-tailcall.c +++ b/gcc/tree-tailcall.c @@ -165,10 +165,8 @@ struct tailcall accumulator. */ static tree m_acc, a_acc; -static bool suitable_for_tail_opt_p (void); static bool optimize_tail_call (struct tailcall *, bool); static void eliminate_tail_call (struct tailcall *); -static void find_tail_calls (basic_block, struct tailcall **); /* Returns false when the function is not suitable for tail call optimization from some reason (e.g. if it takes variable number of arguments). */ @@ -182,7 +180,7 @@ suitable_for_tail_opt_p (void) return true; } /* Returns false when the function is not suitable for tail call optimization - from some reason (e.g. if it takes variable number of arguments). + for some reason (e.g. if it takes variable number of arguments). This test must pass in addition to suitable_for_tail_opt_p in order to make tail call discovery happen. */ -- 2.30.2