summaryrefslogtreecommitdiff
path: root/gcc/expr.c
diff options
context:
space:
mode:
authoruweigand <uweigand@138bc75d-0d04-0410-961f-82ee72b054a4>2003-06-11 13:04:02 +0000
committeruweigand <uweigand@138bc75d-0d04-0410-961f-82ee72b054a4>2003-06-11 13:04:02 +0000
commitb21153394a7c40dd006d47dafa0b38b7aaf95c23 (patch)
treede3b7e1d5d7c50b7d382779ddce0909e382b56b4 /gcc/expr.c
parenta9f93c817e8b32dc8e3240448bb4069083a8b7ac (diff)
downloadgcc-b21153394a7c40dd006d47dafa0b38b7aaf95c23.tar.gz
* expr.c (can_move_by_pieces): align argument may be unused.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@67764 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/expr.c')
-rw-r--r--gcc/expr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/expr.c b/gcc/expr.c
index eca5a95abd2..d4c7e1d9df4 100644
--- a/gcc/expr.c
+++ b/gcc/expr.c
@@ -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);
}