]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* expr.c (can_move_by_pieces): Apply ATTRIBUTE_UNUSED to len.
authoramylaar <amylaar@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 31 Oct 2012 14:23:00 +0000 (14:23 +0000)
committeramylaar <amylaar@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 31 Oct 2012 14:23:00 +0000 (14:23 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@193035 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/expr.c

index 92f290b105218329bf476c17feacef6d8f293491..70d3ad226665f59a82a5c7efe0454ea857681698 100644 (file)
@@ -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>
 
        PR tree-optimization/19105
index 699dae93d3d8a77e0082b560adca9c2728356ae5..db20e9cb635529407b6c83865ca60a375700a2fc 100644 (file)
@@ -841,7 +841,7 @@ widest_int_mode_for_size (unsigned int size)
    succeed.  */
 
 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)
 {
   return MOVE_BY_PIECES_P (len, align);