OSDN Git Service

* regmove.c (fixup_match_1): Remove now useless if (0).
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 2 Apr 1999 16:58:20 +0000 (16:58 +0000)
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 2 Apr 1999 16:58:20 +0000 (16:58 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@26139 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/regmove.c

index 2df336d..4abebe3 100644 (file)
@@ -1,3 +1,7 @@
+Fri Apr  2 17:49:44 1999  Toshiyasu Morita <tm@netcom.com>
+
+       * regmove.c (fixup_match_1): Remove now useless if (0).
+
 Sat Apr  3 11:37:20 1999  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
 
        * tm.texi (USE_LOAD_POST_DECREMENT, USE_LOAD_PRE_DECREMENT,
index 658f9d4..9ae709d 100644 (file)
@@ -1978,11 +1978,7 @@ fixup_match_1 (insn, set, src, src_subreg, dst, backward, operand_number,
        }
     }
 
-  /* Don't remove this seemingly useless if, it is needed to pair with the
-     else in the next two conditionally included code blocks.  */
-  if (0)
-    {;}
-  else if ((HAVE_PRE_INCREMENT || HAVE_PRE_DECREMENT)
+  if ((HAVE_PRE_INCREMENT || HAVE_PRE_DECREMENT)
           && (code == PLUS || code == MINUS) && insn_const
           && try_auto_increment (p, insn, 0, src, insn_const, 1))
     insn = p;