From: Caroline Tice Date: Tue, 7 Sep 2004 17:54:16 +0000 (+0000) Subject: Fix hot/cold partitioning problem. X-Git-Tag: releases/gcc-4.0.0~5177 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9beb1c849ed6e852b744057cddd870c0511ecafe;p=thirdparty%2Fgcc.git Fix hot/cold partitioning problem. 2004-09-07 Caroline Tice * cfgrtl.c (rtl_verify_flow_info_1): Add new edge flag, EDGE_CROSSING, to flags test case. From-SVN: r87149 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e259e603c4c0..732e7885d6f0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-09-07 Caroline Tice + + * cfgrtl.c (rtl_verify_flow_info_1): Add new edge flag, + EDGE_CROSSING, to flags test case. + 2004-09-07 Jan Hubicka * tree-ssa-loop-ivopts.c (contains_abnormal_ssa_name_p): Deal with '<' diff --git a/gcc/cfgrtl.c b/gcc/cfgrtl.c index ce676a64f12e..a35fdbd5619e 100644 --- a/gcc/cfgrtl.c +++ b/gcc/cfgrtl.c @@ -1995,7 +1995,8 @@ rtl_verify_flow_info_1 (void) if ((e->flags & ~(EDGE_DFS_BACK | EDGE_CAN_FALLTHRU | EDGE_IRREDUCIBLE_LOOP - | EDGE_LOOP_EXIT)) == 0) + | EDGE_LOOP_EXIT + | EDGE_CROSSING)) == 0) n_branch++; if (e->flags & EDGE_ABNORMAL_CALL)