mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-09 04:21:49 +08:00
* config/tc-tic80.c (md_apply_fix): Handle R_ABS type fixups.
(fixes several failures in generic part of GAS testsuite)
This commit is contained in:
parent
7b4be6688c
commit
b16a8c8e09
@ -1,3 +1,13 @@
|
||||
start-sanitize-tic80
|
||||
Mon Feb 24 23:34:14 1997 Fred Fish <fnf@cygnus.com>
|
||||
|
||||
* config/tc-tic80.c (md_apply_fix): Handle R_ABS type fixups.
|
||||
|
||||
end-sanitize-tic80
|
||||
Mon Feb 24 18:27:43 1997 Eric Youngdale <eric@andante.jic.com>
|
||||
|
||||
* doc/as.texinfo: Document .symver.
|
||||
|
||||
Mon Feb 24 15:19:57 1997 Martin M. Hunt <hunt@pizza.cygnus.com>
|
||||
|
||||
* config/tc-d10v.c: Change pre_defined_registers to
|
||||
|
@ -879,6 +879,9 @@ md_apply_fix (fixP, val)
|
||||
*dest++ = val >> 2;
|
||||
*dest = (*dest & 0x80) | val >> 10;
|
||||
break;
|
||||
case R_ABS:
|
||||
md_number_to_chars (dest, (valueT) val, fixP -> fx_size);
|
||||
break;
|
||||
default:
|
||||
internal_error_a ("unhandled relocation type in fixup", fixP -> fx_r_type);
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user