diff options
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-fr30.c | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 5df296f..d298edf 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,4 +1,9 @@ start-sanitize-fr30 +1998-12-03 Nick Clifton <nickc@cygnus.com> + + * config/tc-fr30.c (md_cgen_lookup_reloc): Generate + BFD_RELOC_FR30_48 instead of BFD_RELOC_FR30_32. + 1998-12-02 Nick Clifton <nickc@cygnus.com> * config/tc-fr30.c (md_cgen_lookup_reloc): Enable relocs for diff --git a/gas/config/tc-fr30.c b/gas/config/tc-fr30.c index 9925e9d..138c940 100644 --- a/gas/config/tc-fr30.c +++ b/gas/config/tc-fr30.c @@ -446,10 +446,8 @@ md_cgen_lookup_reloc (insn, operand, fixP) case FR30_OPERAND_DISP8: return BFD_RELOC_FR30_8_IN_8; case FR30_OPERAND_UDISP6: return BFD_RELOC_FR30_6_IN_4; case FR30_OPERAND_I8: return BFD_RELOC_8; - case FR30_OPERAND_I32: return BFD_RELOC_32; - /* waiting for this to be defined by Dave.... + case FR30_OPERAND_I32: return BFD_RELOC_FR30_48; case FR30_OPERAND_I20: return BFD_RELOC_FR30_20; - */ default : /* avoid -Wall warning */ break; } |