aboutsummaryrefslogtreecommitdiff
path: root/bfd/coff-mips.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2000-04-11 13:07:56 +0000
committerAlan Modra <amodra@gmail.com>2000-04-11 13:07:56 +0000
commit43cbcf28590f2883478602d7cd7be26341ead69f (patch)
tree8c123332187421e5732d512ef4c720c5fb359f07 /bfd/coff-mips.c
parent8be867464d33db5dee2dba5f197e5dd7f104dead (diff)
downloadfsf-binutils-gdb-43cbcf28590f2883478602d7cd7be26341ead69f.zip
fsf-binutils-gdb-43cbcf28590f2883478602d7cd7be26341ead69f.tar.gz
fsf-binutils-gdb-43cbcf28590f2883478602d7cd7be26341ead69f.tar.bz2
Fit 64-bit nits.
Diffstat (limited to 'bfd/coff-mips.c')
-rw-r--r--bfd/coff-mips.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/coff-mips.c b/bfd/coff-mips.c
index bb4b15e..7b1512f 100644
--- a/bfd/coff-mips.c
+++ b/bfd/coff-mips.c
@@ -1,5 +1,5 @@
/* BFD back-end for MIPS Extended-Coff files.
- Copyright 1990, 91, 92, 93, 94, 95, 96, 97, 98, 1999
+ Copyright 1990, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000
Free Software Foundation, Inc.
Original version by Per Bothner.
Full support added by Ian Lance Taylor, ian@cygnus.com.
@@ -910,7 +910,7 @@ mips_gprel_reloc (abfd,
reloc_entry->address += input_section->output_offset;
/* Make sure it fit in 16 bits. */
- if (val >= 0x8000 && val < 0xffff8000)
+ if ((long) val >= 0x8000 || (long) val < -0x8000)
return bfd_reloc_overflow;
return bfd_reloc_ok;