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
This commit is contained in:
Nathan Froyd 2010-08-31 15:00:43 +00:00 committed by Nathan Froyd
parent 6cea734df5
commit 0835010695
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,8 @@
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

View File

@ -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);