Commit 9beb1c84 by Caroline Tice Committed by Caroline Tice

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
parent 1905940f
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> 2004-09-07 Jan Hubicka <jh@suse.cz>
* tree-ssa-loop-ivopts.c (contains_abnormal_ssa_name_p): Deal with '<' * tree-ssa-loop-ivopts.c (contains_abnormal_ssa_name_p): Deal with '<'
......
...@@ -1995,7 +1995,8 @@ rtl_verify_flow_info_1 (void) ...@@ -1995,7 +1995,8 @@ rtl_verify_flow_info_1 (void)
if ((e->flags & ~(EDGE_DFS_BACK if ((e->flags & ~(EDGE_DFS_BACK
| EDGE_CAN_FALLTHRU | EDGE_CAN_FALLTHRU
| EDGE_IRREDUCIBLE_LOOP | EDGE_IRREDUCIBLE_LOOP
| EDGE_LOOP_EXIT)) == 0) | EDGE_LOOP_EXIT
| EDGE_CROSSING)) == 0)
n_branch++; n_branch++;
if (e->flags & EDGE_ABNORMAL_CALL) if (e->flags & EDGE_ABNORMAL_CALL)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment