* 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:
Fred Fish 1997-02-25 06:37:51 +00:00
parent 7b4be6688c
commit b16a8c8e09
2 changed files with 13 additions and 0 deletions

View file

@ -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

View file

@ -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;