Wed Feb 14 11:22:27 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>

* config/tc-m68k.c (m68k_ip) [operand kind '#']: When fixing
	the byte relocation, point it to the low byte of the word.
This commit is contained in:
Ian Lance Taylor 1996-02-14 16:23:19 +00:00
parent db3bfcd64c
commit d9396c16ce
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Wed Feb 14 11:22:27 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* config/tc-m68k.c (m68k_ip) [operand kind '#']: When fixing
the byte relocation, point it to the low byte of the word.
Tue Feb 13 15:31:18 1996 Ian Lance Taylor <ian@cygnus.com>
* configure.in: Set HDLFLAGS for *-*-hpux with --enable-shared.

View File

@ -2130,7 +2130,8 @@ m68k_ip (instring)
opP->error = "out of range";
insop (tmpreg, opcode);
if (isvar (&opP->disp))
the_ins.reloc[the_ins.nrel - 1].n = (opcode->m_codenum) * 2;
the_ins.reloc[the_ins.nrel - 1].n =
(opcode->m_codenum) * 2 + 1;
break;
case 'w':
if (!isword (tmpreg))