]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
ipa-inline.h (estimate_edge_hints): Call do_estimate_edge_hints, not do_estimate_edge...
authorMartin Jambor <mjambor@suse.cz>
Wed, 29 Aug 2012 12:16:11 +0000 (14:16 +0200)
committerMartin Jambor <jamborm@gcc.gnu.org>
Wed, 29 Aug 2012 12:16:11 +0000 (14:16 +0200)
2012-08-29  Martin Jambor  <mjambor@suse.cz>

* ipa-inline.h (estimate_edge_hints): Call do_estimate_edge_hints, not
do_estimate_edge_time.

From-SVN: r190777

gcc/ChangeLog
gcc/ipa-inline.h

index 76738f344d5bdf37333e85bd7630f2523716fb8d..92ba1cb16202670dc0b0717dbf962dd91bf407c3 100644 (file)
@@ -1,3 +1,8 @@
+2012-08-29  Martin Jambor  <mjambor@suse.cz>
+
+       * ipa-inline.h (estimate_edge_hints): Call do_estimate_edge_hints, not
+       do_estimate_edge_time.
+
 2012-08-29  Chung-Lin Tang  <cltang@codesourcery.com>
 
        * config/mips/mips.h (CRT_CALL_STATIC_FUNCTION): Add nomips16 asm
index 839bc237f2aa347cea9943baa1a110ca502455d4..c99071672e71c71f7318aa8c4c1a2ecc6445b136 100644 (file)
@@ -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;
 }