diff options
author | Andreas Krebbel <Andreas.Krebbel@de.ibm.com> | 2013-04-12 05:38:27 +0000 |
---|---|---|
committer | Andreas Krebbel <krebbel@gcc.gnu.org> | 2013-04-12 05:38:27 +0000 |
commit | 067a1e719b28b7a62d0a4c4a0732938fe45a812b (patch) | |
tree | 2a171c59ec2f2eb52d3494a291d91ab842fe2f5f /gcc/ifcvt.c | |
parent | b056c91039b6c382b4520743c6ad07b47dd96424 (diff) | |
download | gcc-067a1e719b28b7a62d0a4c4a0732938fe45a812b.zip gcc-067a1e719b28b7a62d0a4c4a0732938fe45a812b.tar.gz gcc-067a1e719b28b7a62d0a4c4a0732938fe45a812b.tar.bz2 |
ifcvt.c (end_ifcvt_sequence): Mark a and b for unsharing as well.
2013-04-12 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
* ifcvt.c (end_ifcvt_sequence): Mark a and b for unsharing as
well.
From-SVN: r197839
Diffstat (limited to 'gcc/ifcvt.c')
-rw-r--r-- | gcc/ifcvt.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/ifcvt.c b/gcc/ifcvt.c index f1309cf..4057577 100644 --- a/gcc/ifcvt.c +++ b/gcc/ifcvt.c @@ -964,6 +964,8 @@ end_ifcvt_sequence (struct noce_if_info *if_info) set_used_flags (if_info->x); set_used_flags (if_info->cond); + set_used_flags (if_info->a); + set_used_flags (if_info->b); unshare_all_rtl_in_chain (seq); end_sequence (); |