2001-02-16 matthew green <mrg@redhat.com>
* gas/cgen.c (gas_cgen_md_apply_fix3): Support BFD_RELOC_64.
This commit is contained in:
parent
17dee195e8
commit
363c574f51
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2001-02-16 matthew green <mrg@redhat.com>
|
||||||
|
|
||||||
|
* gas/cgen.c (gas_cgen_md_apply_fix3): Support BFD_RELOC_64.
|
||||||
|
|
||||||
2001-02-13 Jim Wilson <wilson@redhat.com>
|
2001-02-13 Jim Wilson <wilson@redhat.com>
|
||||||
|
|
||||||
* config/tc-ia64.c (operand_match, case TAG13): Make a BFD_RELOC_UNUSED
|
* config/tc-ia64.c (operand_match, case TAG13): Make a BFD_RELOC_UNUSED
|
||||||
|
|
|
@ -615,7 +615,9 @@ gas_cgen_md_apply_fix3 (fixP, valueP, seg)
|
||||||
case BFD_RELOC_32:
|
case BFD_RELOC_32:
|
||||||
md_number_to_chars (where, value, 4);
|
md_number_to_chars (where, value, 4);
|
||||||
break;
|
break;
|
||||||
/* FIXME: later add support for 64 bits. */
|
case BFD_RELOC_64:
|
||||||
|
md_number_to_chars (where, value, 8);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
as_bad_where (fixP->fx_file, fixP->fx_line,
|
as_bad_where (fixP->fx_file, fixP->fx_line,
|
||||||
_("internal error: can't install fix for reloc type %d (`%s')"),
|
_("internal error: can't install fix for reloc type %d (`%s')"),
|
||||||
|
|
Loading…
Reference in a new issue