aboutsummaryrefslogtreecommitdiff
path: root/bfd/coff-sh.c
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2019-11-26 14:06:12 +0000
committerNick Clifton <nickc@redhat.com>2019-11-26 14:06:12 +0000
commit239b426b11425c4bd6b36aa7fd92a01e74fd42cb (patch)
tree0e23807053464a5a1c19321a6bd37d18fe50b41b /bfd/coff-sh.c
parent42971193643cb2ec655a2b11315d425e290fe50e (diff)
downloadfsf-binutils-gdb-239b426b11425c4bd6b36aa7fd92a01e74fd42cb.zip
fsf-binutils-gdb-239b426b11425c4bd6b36aa7fd92a01e74fd42cb.tar.gz
fsf-binutils-gdb-239b426b11425c4bd6b36aa7fd92a01e74fd42cb.tar.bz2
Fix comparison operations in SH code that trigger warning in clang.
* elf32-sh.c (sh_elf_reloc): Use a signed_vma when checking for a negative relocated value. * coff-sh.c (sh_reloc): Likewise.
Diffstat (limited to 'bfd/coff-sh.c')
-rw-r--r--bfd/coff-sh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/coff-sh.c b/bfd/coff-sh.c
index 4b6b0de..1077a20 100644
--- a/bfd/coff-sh.c
+++ b/bfd/coff-sh.c
@@ -632,7 +632,7 @@ sh_reloc (bfd * abfd,
sym_value -= 0x1000;
insn = (insn & 0xf000) | (sym_value & 0xfff);
bfd_put_16 (abfd, (bfd_vma) insn, hit_data);
- if (sym_value < (bfd_vma) -0x1000 || sym_value >= 0x1000)
+ if ((bfd_signed_vma) sym_value < -0x1000 || sym_value >= 0x1000)
return bfd_reloc_overflow;
break;
default: