diff options
author | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-04-21 11:40:46 +0000 |
---|---|---|
committer | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-04-21 11:40:46 +0000 |
commit | 4302d619df8a4a97d0690163f644179a74ddc0ca (patch) | |
tree | c25284f96a167e670591c7a8289f962d38b6e60e /gcc/ChangeLog | |
parent | 12b34fda50a5d67eb1f2f778948c1654145f1f84 (diff) | |
download | gcc-4302d619df8a4a97d0690163f644179a74ddc0ca.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@222264 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ChangeLog')
-rw-r--r-- | gcc/ChangeLog | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2a982b1bd7f..6970232d8d1 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,29 @@ +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. + 2015-04-21 Kyrylo Tkachov <kyrylo.tkachov@arm.com> * config/aarch64/aarch64.md (*<NLOGICAL:optab>_one_cmplsidi3_ze): |