diff options
author | Nick Clifton <nickc@redhat.com> | 1998-12-03 17:02:49 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 1998-12-03 17:02:49 +0000 |
commit | 2f53621405493d26c66df995cac2576749cd2b29 (patch) | |
tree | 2c473b300443c1a7519ff2284afe6946aecbe2e5 /gas | |
parent | a617cb0b120732542cc338950f9b8edcd8a4c238 (diff) | |
download | fsf-binutils-gdb-2f53621405493d26c66df995cac2576749cd2b29.zip fsf-binutils-gdb-2f53621405493d26c66df995cac2576749cd2b29.tar.gz fsf-binutils-gdb-2f53621405493d26c66df995cac2576749cd2b29.tar.bz2 |
change BFD_RELOC_FR30_32 to BFD_RELOC_FR30_48
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; } |