OSDN Git Service

* expr.c (can_move_by_pieces): align argument may be unused.
authoruweigand <uweigand@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 11 Jun 2003 13:04:02 +0000 (13:04 +0000)
committeruweigand <uweigand@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 11 Jun 2003 13:04:02 +0000 (13:04 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@67764 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/expr.c

index f1dbb9e..82a5b8a 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 eca5a95..d4c7e1d 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);
 }