diff options
author | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-04-02 12:00:30 +0000 |
---|---|---|
committer | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-04-02 12:00:30 +0000 |
commit | ec3167d1b0bc3cd77968b945de37a20e637fdb3a (patch) | |
tree | 9c9b07f7e0b35f9b93927931381863e982d92c40 /gcc/cprop.c | |
parent | 759626e64ff15d51cb12ec351d3a0de0b06ae13e (diff) | |
download | gcc-ec3167d1b0bc3cd77968b945de37a20e637fdb3a.tar.gz |
2012-04-02 Richard Guenther <rguenther@suse.de>
PR rtl-optimization/52800
* cprop.c (execute_rtl_cprop): Call cleanup_cfg with
CLEANUP_CFG_CHANGED.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@186081 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cprop.c')
-rw-r--r-- | gcc/cprop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cprop.c b/gcc/cprop.c index 024dd207655..ea6909195ac 100644 --- a/gcc/cprop.c +++ b/gcc/cprop.c @@ -1916,7 +1916,7 @@ execute_rtl_cprop (void) changed = one_cprop_pass (); flag_rerun_cse_after_global_opts |= changed; if (changed) - cleanup_cfg (0); + cleanup_cfg (CLEANUP_CFG_CHANGED); return 0; } |