diff options
author | Richard Biener <rguenther@suse.de> | 2015-04-21 11:40:46 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2015-04-21 11:40:46 +0000 |
commit | c4d281b29a03c1e7637936434a04e9a419f22c00 (patch) | |
tree | c25284f96a167e670591c7a8289f962d38b6e60e /gcc/tree-cfg.c | |
parent | 8409e468a5f94b7577ccfa073f8b859481a86800 (diff) | |
download | gcc-c4d281b29a03c1e7637936434a04e9a419f22c00.zip gcc-c4d281b29a03c1e7637936434a04e9a419f22c00.tar.gz gcc-c4d281b29a03c1e7637936434a04e9a419f22c00.tar.bz2 |
cfghooks.h (create_basic_block): Replace with two overloads for RTL and GIMPLE.
2015-04-21 Richard Biener <rguenther@suse.de>
* cfghooks.h (create_basic_block): Replace with two overloads
for RTL and GIMPLE.
(split_block): Likewise.
* cfghooks.c (split_block): Rename to ...
(split_block_1): ... this.
(split_block): Add two type-safe overloads for RTL and GIMPLE.
(split_block_after_labels): Call split_block_1.
(create_basic_block): Rename to ...
(create_basic_block_1): ... this.
(create_basic_block): Add two type-safe overloads for RTL and GIMPLE.
(create_empty_bb): Call create_basic_block_1.
* cfgrtl.c (fixup_fallthru_exit_predecessor): Use
split_block_after_labels.
* omp-low.c (expand_parallel_call): Likewise.
(expand_omp_target): Likewise.
(simd_clone_adjust): Likewise.
* tree-chkp.c (chkp_get_entry_block): Likewise.
* cgraphunit.c (init_lowered_empty_function): Use the GIMPLE
create_basic_block overload.
(cgraph_node::expand_thunk): Likewise.
* tree-cfg.c (make_blocks): Likewise.
(handle_abnormal_edges): Likewise.
* tree-inline.c (copy_bb): Likewise.
From-SVN: r222264
Diffstat (limited to 'gcc/tree-cfg.c')
-rw-r--r-- | gcc/tree-cfg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-cfg.c b/gcc/tree-cfg.c index 4929629..988ab2a 100644 --- a/gcc/tree-cfg.c +++ b/gcc/tree-cfg.c @@ -542,7 +542,7 @@ make_blocks_1 (gimple_seq seq, basic_block bb) { if (!first_stmt_of_seq) gsi_split_seq_before (&i, &seq); - bb = create_basic_block (seq, NULL, bb); + bb = create_basic_block (seq, bb); start_new_block = false; } @@ -748,7 +748,7 @@ handle_abnormal_edges (basic_block *dispatcher_bbs, } /* Create the dispatcher bb. */ - *dispatcher = create_basic_block (NULL, NULL, for_bb); + *dispatcher = create_basic_block (NULL, for_bb); if (computed_goto) { /* Factor computed gotos into a common computed goto site. Also |