]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* expr.c (can_move_by_pieces): align argument may be unused.
authorUlrich Weigand <uweigand@de.ibm.com>
Wed, 11 Jun 2003 13:04:02 +0000 (13:04 +0000)
committerUlrich Weigand <uweigand@gcc.gnu.org>
Wed, 11 Jun 2003 13:04:02 +0000 (13:04 +0000)
From-SVN: r67764

gcc/ChangeLog
gcc/expr.c

index f1dbb9e67142e6f900e1c94bd2028e66acdc0e7b..82a5b8ae94294abf4c2d5a5551767f5e1079c195 100644 (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.
index eca5a95abd217c431e6b445f6d0c9659f15528f5..d4c7e1d9df4ff2285856c4d4badc849fa6776dcd 100644 (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);
 }