diff options
Diffstat (limited to 'bfd/elf32-i860.c')
-rw-r--r-- | bfd/elf32-i860.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/elf32-i860.c b/bfd/elf32-i860.c index 7a132c6..74112f1 100644 --- a/bfd/elf32-i860.c +++ b/bfd/elf32-i860.c @@ -803,7 +803,7 @@ elf32_i860_relocate_highadj (input_bfd, rel, contents, value) insn = bfd_get_32 (input_bfd, contents + rel->r_offset); value += rel->r_addend; - value += (value & 0x8000) << 1; + value += 0x8000; value = ((value >> 16) & 0xffff); insn = (insn & 0xffff0000) | value; |