diff options
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/config/tc-m68k.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 1e070cf..d4a67d4 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,9 @@ 2000-10-18 Michael Sokolov <msokolov@ivan.Harhan.ORG> + * config/tc-m68k.c: Fix the previous misapplied patch. + +2000-10-18 Michael Sokolov <msokolov@ivan.Harhan.ORG> + * config/tc-m68k.h (RELAX_RELOC_*): New definitions for both BFD_ASSEMBLER and !BFD_ASSEMBLER. * config/tc-m68k.c (md_convert_frag_1): Use them instead of diff --git a/gas/config/tc-m68k.c b/gas/config/tc-m68k.c index cb4a328..1cd8157 100644 --- a/gas/config/tc-m68k.c +++ b/gas/config/tc-m68k.c @@ -4383,7 +4383,7 @@ md_convert_frag_1 (fragP) fragP->fr_opcode[0] = 0x4E; fragP->fr_opcode[1] = (char) 0xB9; /* JSR with ABSL LONG operand */ fix_new (fragP, fragP->fr_fix, 4, fragP->fr_symbol, fragP->fr_offset, - 0, RELAX_RELOC_PC32); + 0, RELAX_RELOC_ABS32); fragP->fr_fix += 4; } else if (fragP->fr_opcode[0] == 0x60) /* jbra */ |