diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-05-04 23:23:45 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-05-04 23:23:45 +0000 |
commit | 86e44551723538b43a9f5dac0596ae92627e2033 (patch) | |
tree | 742c28bbd99b28300caf56288c37da8debebbd7e /gcc/ifcvt.c | |
parent | a5939c636abdf8b890adc459c086d797ed728f3c (diff) | |
download | gcc-86e44551723538b43a9f5dac0596ae92627e2033.tar.gz |
* ifcvt.c (noce_process_if_block): Always reset X in the A == B case.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@33690 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ifcvt.c')
-rw-r--r-- | gcc/ifcvt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ifcvt.c b/gcc/ifcvt.c index 79be885fc15..f1b8a952b72 100644 --- a/gcc/ifcvt.c +++ b/gcc/ifcvt.c @@ -1139,8 +1139,8 @@ noce_process_if_block (test_bb, then_bb, else_bb, join_bb) else_bb->end = PREV_INSN (insn_b); reorder_insns (insn_b, insn_b, PREV_INSN (if_info.cond_earliest)); insn_b = NULL_RTX; - x = orig_x; } + x = orig_x; goto success; } |