diff options
author | amylaar <amylaar@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-10-31 14:23:00 +0000 |
---|---|---|
committer | amylaar <amylaar@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-10-31 14:23:00 +0000 |
commit | 3af941e350e6eb77e4af3467cf8b81c24caad280 (patch) | |
tree | c7957e46891d273251b04eaea820a615cb69b0a5 /gcc/expr.c | |
parent | 8317f4cfbdb657d7ff2feb727f643c2f504c21d4 (diff) | |
download | gcc-3af941e350e6eb77e4af3467cf8b81c24caad280.tar.gz |
* expr.c (can_move_by_pieces): Apply ATTRIBUTE_UNUSED to len.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@193035 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 699dae93d3d..db20e9cb635 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -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); |