Fix hot/cold partitioning problem.

2004-09-07  Caroline Tice  <ctice@apple.com>

        * cfgrtl.c (rtl_verify_flow_info_1):  Add new edge flag,
        EDGE_CROSSING, to flags test case.

From-SVN: r87149
This commit is contained in:
Caroline Tice 2004-09-07 17:54:16 +00:00 committed by Caroline Tice
parent 1905940fb0
commit 9beb1c849e
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2004-09-07 Caroline Tice <ctice@apple.com>
* cfgrtl.c (rtl_verify_flow_info_1): Add new edge flag,
EDGE_CROSSING, to flags test case.
2004-09-07 Jan Hubicka <jh@suse.cz>
* tree-ssa-loop-ivopts.c (contains_abnormal_ssa_name_p): Deal with '<'

View File

@ -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)