diff options
author | rakdver <rakdver@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-04-23 23:15:54 +0000 |
---|---|---|
committer | rakdver <rakdver@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-04-23 23:15:54 +0000 |
commit | c23dad79cc8aca9ce5f7d916a84f73905c326820 (patch) | |
tree | 916f5481a2d49b54e7ca5e6359ffeb9231fdbe30 /gcc/tree-if-conv.c | |
parent | 401ed9a810e9f4a96a2be6caf742cd6776498a8b (diff) | |
download | gcc-c23dad79cc8aca9ce5f7d916a84f73905c326820.tar.gz |
* tree-phinodes.c (reserve_phi_args_for_new_edge, remove_phi_node):
Use phi_nodes_ptr.
(create_phi_node): Use set_phi_nodes.
* omp-low.c (expand_omp_parallel): Use bb_stmt_list.
* tree-if-conv.c (process_phi_nodes): Use set_phi_nodes.
(combine_blocks): Use bb_stmt_list and set_bb_stmt_list.
* tree-flow-inline.h (phi_nodes, set_phi_nodes,
(bsi_start, bsi_last): Use bb_stmt_list.
(phi_nodes_ptr, bb_stmt_list, set_bb_stmt_list): New functions.
* cfgexpand.c (expand_gimple_basic_block): Use bb_stmt_list.
Traverse the statements using tsi iterator.
* basic-block.h (struct basic_block_def): Fields stmt_list
and phi_nodes moved to ...
(struct tree_bb_info): ... new structure.
* tree-cfg.c (create_bb): Allocate il.tree. Use set_bb_stmt_list.
(tree_merge_blocks): Use bb_stmt_list and set_bb_stmt_list.
(remove_bb): Handle blocks with NULL stmt list. Clear il.tree field.
(tree_verify_flow_info): Verify that il.tree is not set for
entry and exit block.
(tree_split_block): Use set_bb_stmt_list.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@124086 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-if-conv.c')
-rw-r--r-- | gcc/tree-if-conv.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/tree-if-conv.c b/gcc/tree-if-conv.c index 709c414542b..580848eb06a 100644 --- a/gcc/tree-if-conv.c +++ b/gcc/tree-if-conv.c @@ -865,7 +865,7 @@ process_phi_nodes (struct loop *loop) release_phi_node (phi); phi = next; } - bb->phi_nodes = NULL; + set_phi_nodes (bb, NULL_TREE); } return; } @@ -960,9 +960,9 @@ combine_blocks (struct loop *loop) } /* Update stmt list. */ - last = tsi_last (merge_target_bb->stmt_list); - tsi_link_after (&last, bb->stmt_list, TSI_NEW_STMT); - bb->stmt_list = alloc_stmt_list (); + last = tsi_last (bb_stmt_list (merge_target_bb)); + tsi_link_after (&last, bb_stmt_list (bb), TSI_NEW_STMT); + set_bb_stmt_list (bb, NULL); delete_basic_block (bb); } |