aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorFred Fish <fnf@specifix.com>1997-02-25 06:37:51 +0000
committerFred Fish <fnf@specifix.com>1997-02-25 06:37:51 +0000
commitb16a8c8e095eb51e82f033d14ba79bf45ff3d18e (patch)
tree3112014efa8967b6acbf1afd4aafeb8d573644a0 /gas
parent7b4be6688c5ba572f31f9ead4a3b3b0dc4730f30 (diff)
downloadgdb-b16a8c8e095eb51e82f033d14ba79bf45ff3d18e.zip
gdb-b16a8c8e095eb51e82f033d14ba79bf45ff3d18e.tar.gz
gdb-b16a8c8e095eb51e82f033d14ba79bf45ff3d18e.tar.bz2
* config/tc-tic80.c (md_apply_fix): Handle R_ABS type fixups.
(fixes several failures in generic part of GAS testsuite)
Diffstat (limited to 'gas')
-rw-r--r--gas/ChangeLog10
-rw-r--r--gas/config/tc-tic80.c3
2 files changed, 13 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index ee3b70b..0558347 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -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
diff --git a/gas/config/tc-tic80.c b/gas/config/tc-tic80.c
index 043a969..33713b0 100644
--- a/gas/config/tc-tic80.c
+++ b/gas/config/tc-tic80.c
@@ -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;