forked from Imagelibrary/binutils-gdb
* config/tc-mips.c (append_insn): Don't rightshift BFD_RELOC_16_PCREL.
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
2001-09-12 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
|
||||
|
||||
* config/tc-mips.c (append_insn): Don't rightshift BFD_RELOC_16_PCREL.
|
||||
|
||||
2001-09-11 Richard Henderson <rth@redhat.com>
|
||||
|
||||
* config/tc-alpha.c (alpha_elf_section_letter): New.
|
||||
|
||||
@@ -1899,7 +1899,7 @@ append_insn (place, ip, address_expr, reloc_type, unmatched_hi)
|
||||
break;
|
||||
|
||||
case BFD_RELOC_16_PCREL:
|
||||
ip->insn_opcode |= (address_expr->X_add_number >> 2) & 0xffff;
|
||||
ip->insn_opcode |= address_expr->X_add_number & 0xffff;
|
||||
break;
|
||||
|
||||
case BFD_RELOC_16_PCREL_S2:
|
||||
|
||||
Reference in New Issue
Block a user