OSDN Git Service

* ifcvt.c (noce_process_if_block): Always reset X in the A == B case.
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 4 May 2000 23:23:45 +0000 (23:23 +0000)
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 4 May 2000 23:23:45 +0000 (23:23 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@33690 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/ifcvt.c

index 2a90789..2778562 100644 (file)
@@ -1,5 +1,9 @@
 2000-05-04  Richard Henderson  <rth@cygnus.com>
 
+       * ifcvt.c (noce_process_if_block): Always reset X in the A == B case.
+
+2000-05-04  Richard Henderson  <rth@cygnus.com>
+
        * Makefile.in (FPBIT_FUNCS): Remove _df_to_usi.
        (DPBIT_FUNCS): Remove _sf_to_usi.
        (stmp-multilib): Pass LIB1ASMSRC to libgcc.mk.
index 79be885..f1b8a95 100644 (file)
@@ -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;
     }