* expr.c (can_move_by_pieces): align argument may be unused.

From-SVN: r67764
This commit is contained in:
Ulrich Weigand 2003-06-11 13:04:02 +00:00 committed by Ulrich Weigand
parent 06765df195
commit 658cf52f51
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2003-06-11 Ulrich Weigand <uweigand@de.ibm.com>
* expr.c (can_move_by_pieces): align argument may be unused.
2003-06-11 J"orn Rennecke <joern.rennecke@superh.com>
* expr.c (convert_move): Handle moves between two CONCATs.

View file

@ -1470,7 +1470,7 @@ convert_modes (mode, oldmode, x, unsignedp)
int
can_move_by_pieces (len, align)
unsigned HOST_WIDE_INT len;
unsigned int align;
unsigned int align ATTRIBUTE_UNUSED;
{
return MOVE_BY_PIECES_P (len, align);
}