diff options
author | Nick Clifton <nickc@redhat.com> | 2011-12-14 14:10:57 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2011-12-14 14:10:57 +0000 |
commit | 66dbb2bbf4253b78894e6cf09597cdb093512c33 (patch) | |
tree | 928df9e054d7c89da5397927530ac24af19d9048 /gas | |
parent | f68e81fcd4015029cf382711ca0f70c85814c5b3 (diff) | |
download | gdb-66dbb2bbf4253b78894e6cf09597cdb093512c33.zip gdb-66dbb2bbf4253b78894e6cf09597cdb093512c33.tar.gz gdb-66dbb2bbf4253b78894e6cf09597cdb093512c33.tar.bz2 |
* config/tc-cris.c (md_convert_frag): Mark the length_code local
variable as unused as it is only used when ENABLE_CHECKING is on.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-cris.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index e6b1666..245c716 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2011-12-14 Nick Clifton <nickc@redhat.com> + + * config/tc-cris.c (md_convert_frag): Mark the length_code local + variable as unused as it is only used when ENABLE_CHECKING is on. + 2011-12-14 Iain Sandoe <iains@gcc.gnu.org> * config/obj-macho.c: Add some more top-level comments. diff --git a/gas/config/tc-cris.c b/gas/config/tc-cris.c index 1eb4ad1..657c7ed 100644 --- a/gas/config/tc-cris.c +++ b/gas/config/tc-cris.c @@ -815,7 +815,7 @@ md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT sec ATTRIBUTE_UNUSED, /* Used to check integrity of the relaxation. One of 2 = long, 1 = word, or 0 = byte. */ - int length_code; + int length_code ATTRIBUTE_UNUSED; /* Size in bytes of variable-sized part of frag. */ int var_part_size = 0; |