From: Martin Jambor Date: Wed, 29 Aug 2012 12:16:11 +0000 (+0200) Subject: ipa-inline.h (estimate_edge_hints): Call do_estimate_edge_hints, not do_estimate_edge... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=de99ac704f22e270267d4be6244c35439aea72c8;p=gcc.git ipa-inline.h (estimate_edge_hints): Call do_estimate_edge_hints, not do_estimate_edge_time. 2012-08-29 Martin Jambor * ipa-inline.h (estimate_edge_hints): Call do_estimate_edge_hints, not do_estimate_edge_time. From-SVN: r190777 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 76738f344d5..92ba1cb1620 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2012-08-29 Martin Jambor + + * ipa-inline.h (estimate_edge_hints): Call do_estimate_edge_hints, not + do_estimate_edge_time. + 2012-08-29 Chung-Lin Tang * config/mips/mips.h (CRT_CALL_STATIC_FUNCTION): Add nomips16 asm diff --git a/gcc/ipa-inline.h b/gcc/ipa-inline.h index 839bc237f2a..c99071672e7 100644 --- a/gcc/ipa-inline.h +++ b/gcc/ipa-inline.h @@ -283,7 +283,7 @@ estimate_edge_hints (struct cgraph_edge *edge) || !(ret = VEC_index (edge_growth_cache_entry, edge_growth_cache, edge->uid).hints)) - return do_estimate_edge_time (edge); + return do_estimate_edge_hints (edge); return ret - 1; }