* regmove.c (fixup_match_1): Remove now useless if (0).

From-SVN: r26139
This commit is contained in:
Toshiyasu Morita 1999-04-02 16:58:20 +00:00 committed by Jeff Law
parent 6e01bd94f8
commit cb084004de
2 changed files with 5 additions and 5 deletions

View 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,

View 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;