mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-25 12:36:07 +08:00
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:
parent
6cea734df5
commit
0835010695
@ -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
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user