From: John Darrington Date: Tue, 23 Oct 2018 13:33:18 +0000 (+0200) Subject: S12Z: Handle 16 bit fixups which are constant. X-Git-Tag: users/ARM/embedded-binutils-master-2018q4~378 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=405b61965ff7608840cfda36083c1be1f926ccdb;p=platform%2Fupstream%2Fbinutils.git S12Z: Handle 16 bit fixups which are constant. Commit 1f38083f425e03faf55595414daf291306738222 added a test to check that the assembler handled fixups with resolved to constant values. We were not handling this in the case of 16 bit values. This change fixes that. * gas/config/tc-s12z.c (md_apply_fix): Handle BFD_RELOC_16 --- diff --git a/gas/ChangeLog b/gas/ChangeLog index d5935b7..759186b 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2018-10-23 John Darrington + + * config/tc-s12z.c (md_apply_fix): Handle BFD_RELOC_16 for fixups + without a symbol. + 2018-10-22 Alan Modra * testsuite/gas/all/simple-forward.d, diff --git a/gas/config/tc-s12z.c b/gas/config/tc-s12z.c index d3b2ea4..9df8643 100644 --- a/gas/config/tc-s12z.c +++ b/gas/config/tc-s12z.c @@ -3815,6 +3815,9 @@ md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED) case BFD_RELOC_8: ((bfd_byte *) where)[0] = (bfd_byte) value; break; + case BFD_RELOC_16: + bfd_putb16 ((bfd_vma) value, (unsigned char *) where); + break; case BFD_RELOC_24: bfd_putb24 ((bfd_vma) value, (unsigned char *) where); break;