diff options
author | uweigand <uweigand@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-11 13:04:02 +0000 |
---|---|---|
committer | uweigand <uweigand@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-11 13:04:02 +0000 |
commit | b21153394a7c40dd006d47dafa0b38b7aaf95c23 (patch) | |
tree | de3b7e1d5d7c50b7d382779ddce0909e382b56b4 /gcc/expr.c | |
parent | a9f93c817e8b32dc8e3240448bb4069083a8b7ac (diff) | |
download | gcc-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.c | 2 |
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); } |