mirror of git://gcc.gnu.org/git/gcc.git
* expr.c (can_move_by_pieces): Apply ATTRIBUTE_UNUSED to len.
From-SVN: r193035
This commit is contained in:
parent
c89e29b4e0
commit
1b9a8025fc
|
|
@ -1,3 +1,7 @@
|
||||||
|
2012-10-31 Joern Rennecke <joern.rennecke@embecosm.com>
|
||||||
|
|
||||||
|
* expr.c (can_move_by_pieces): Apply ATTRIBUTE_UNUSED to len.
|
||||||
|
|
||||||
2012-10-31 Jakub Jelinek <jakub@redhat.com>
|
2012-10-31 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
PR tree-optimization/19105
|
PR tree-optimization/19105
|
||||||
|
|
|
||||||
|
|
@ -841,7 +841,7 @@ widest_int_mode_for_size (unsigned int size)
|
||||||
succeed. */
|
succeed. */
|
||||||
|
|
||||||
int
|
int
|
||||||
can_move_by_pieces (unsigned HOST_WIDE_INT len,
|
can_move_by_pieces (unsigned HOST_WIDE_INT len ATTRIBUTE_UNUSED,
|
||||||
unsigned int align ATTRIBUTE_UNUSED)
|
unsigned int align ATTRIBUTE_UNUSED)
|
||||||
{
|
{
|
||||||
return MOVE_BY_PIECES_P (len, align);
|
return MOVE_BY_PIECES_P (len, align);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue