diff options
author | Jan Hubicka <jh@suse.cz> | 2013-09-03 00:52:27 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2013-09-02 22:52:27 +0000 |
commit | a64bbb3f8997b97c3f8c049ed7ff1090bf8ee863 (patch) | |
tree | 6a7cb6686855745349b4efa116306aa082c2c2cd /gcc | |
parent | 93ed07e21adc82b35f451dcf532b833f67c110ce (diff) | |
download | gcc-a64bbb3f8997b97c3f8c049ed7ff1090bf8ee863.zip gcc-a64bbb3f8997b97c3f8c049ed7ff1090bf8ee863.tar.gz gcc-a64bbb3f8997b97c3f8c049ed7ff1090bf8ee863.tar.bz2 |
* tree-profile.c (tree_profiling): Cleanup CFG when done.
From-SVN: r202191
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/tree-profile.c | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 173fda9..2af5ff5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2013-09-03 Jan Hubicka <jh@suse.cz> + + * tree-profile.c (tree_profiling): Cleanup CFG when done. + 2013-09-03 Alan Modra <amodra@gmail.com> * config.gcc (powerpc*-*-linux*): Add support for little-endian diff --git a/gcc/tree-profile.c b/gcc/tree-profile.c index c992537..dd164b5 100644 --- a/gcc/tree-profile.c +++ b/gcc/tree-profile.c @@ -598,6 +598,8 @@ tree_profiling (void) } } + /* re-merge split blocks. */ + cleanup_tree_cfg (); update_ssa (TODO_update_ssa); rebuild_cgraph_edges (); |