Commit 08350106 by Nathan Froyd Committed by Nathan Froyd

fr30.c (fr30_move_double): Delete `dregno' and extra semicolons.

	* config/fr30/fr30.c (fr30_move_double): Delete `dregno' and extra
	semicolons.

From-SVN: r163677
parent 6cea734d
2010-08-31 Nathan Froyd <froydnj@codesourcery.com>
* config/fr30/fr30.c (fr30_move_double): Delete `dregno' and extra
semicolons.
2010-08-31 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
* doc/extend.texi: Fix documentation of the return value of
......
......@@ -844,9 +844,8 @@ fr30_move_double (rtx * operands)
else if (src_code == MEM)
{
rtx addr = XEXP (src, 0);
int dregno = REGNO (dest);
rtx dest0 = operand_subword (dest, 0, TRUE, mode);;
rtx dest1 = operand_subword (dest, 1, TRUE, mode);;
rtx dest0 = operand_subword (dest, 0, TRUE, mode);
rtx dest1 = operand_subword (dest, 1, TRUE, mode);
rtx new_mem;
gcc_assert (GET_CODE (addr) == REG);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment