mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-25 02:53:48 +08:00
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.
This commit is contained in:
parent
4297119364
commit
239b426b11
@ -1,3 +1,9 @@
|
||||
2019-11-26 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
* elf32-sh.c (sh_elf_reloc): Use a signed_vma when checking for a
|
||||
negative relocated value.
|
||||
* coff-sh.c (sh_reloc): Likewise.
|
||||
|
||||
2019-11-25 Alan Modra <amodra@gmail.com>
|
||||
|
||||
* archures.c (bfd_octets_per_byte): Tail call
|
||||
|
@ -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:
|
||||
|
@ -288,7 +288,7 @@ sh_elf_reloc (bfd *abfd, arelent *reloc_entry, asymbol *symbol_in,
|
||||
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:
|
||||
|
Loading…
Reference in New Issue
Block a user