summaryrefslogtreecommitdiff
path: root/bfd
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2005-02-11 15:57:10 +0000
committerNick Clifton <nickc@redhat.com>2005-02-11 15:57:10 +0000
commit9882f8f6dd501f6d5d15ebf31f2987fc43de581d (patch)
treeae28b23bc0bf3d99cd1d689f74a761103497e52d /bfd
parente20f25dad45abd5b47030050b9990f94937dbbd7 (diff)
downloadbinutils-redhat-9882f8f6dd501f6d5d15ebf31f2987fc43de581d.tar.gz
Remove redundant test in BFD_ASSERT
Diffstat (limited to 'bfd')
-rw-r--r--bfd/ChangeLog5
-rw-r--r--bfd/coff-alpha.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 4b5600c9c5..099c7032e7 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,8 @@
+2005-02-11 Nick Clifton <nickc@redhat.com>
+
+ * coff-alpha.c (alpha_adjust_reloc_in): Remove redundant test from
+ BFD_ASSERT.
+
2005-02-12 Alan Modra <amodra@bigpond.net.au>
* elf64-ppc.c (toc_adjusting_stub_needed): Return true for
diff --git a/bfd/coff-alpha.c b/bfd/coff-alpha.c
index 38d2e699b9..f29f732575 100644
--- a/bfd/coff-alpha.c
+++ b/bfd/coff-alpha.c
@@ -668,7 +668,7 @@ alpha_adjust_reloc_in (abfd, intern, rptr)
case ALPHA_R_OP_STORE:
/* The STORE reloc needs the size and offset fields. We store
them in the addend. */
- BFD_ASSERT (intern->r_offset <= 256 && intern->r_size <= 256);
+ BFD_ASSERT (intern->r_offset <= 256);
rptr->addend = (intern->r_offset << 8) + intern->r_size;
break;