summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2020-05-25 16:17:50 -0700
committerH.J. Lu <hjl.tools@gmail.com>2020-05-25 16:19:49 -0700
commit6c115e16cadbca943396df6078b1c596fec49b73 (patch)
treefe4368d534af77167048f3ff758f78bfaaf93283
parent68dc60e6a7cf8924a97a23d3c8a73703c2ff79d5 (diff)
downloadbinutils-gdb-6c115e16cadbca943396df6078b1c596fec49b73.tar.gz
gas: Silence GCC 10 warning on tc-cr16.c
* config/tc-cr16.c (md_convert_frag): Replace fragP->fr_literal with &fragP->fr_literal[0].
-rw-r--r--gas/ChangeLog5
-rw-r--r--gas/config/tc-cr16.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index 1b0ec36dec2..96c78092a04 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,5 +1,10 @@
2020-05-25 H.J. Lu <hongjiu.lu@intel.com>
+ * config/tc-cr16.c (md_convert_frag): Replace fragP->fr_literal
+ with &fragP->fr_literal[0].
+
+2020-05-25 H.J. Lu <hongjiu.lu@intel.com>
+
* config/tc-csky.c (md_convert_frag): Replace fragp->fr_literal
with &fragp->fr_literal[0].
* config/tc-microblaze.c (md_apply_fix): Likewise.
diff --git a/gas/config/tc-cr16.c b/gas/config/tc-cr16.c
index 7a8f33b8897..901838398ec 100644
--- a/gas/config/tc-cr16.c
+++ b/gas/config/tc-cr16.c
@@ -642,7 +642,7 @@ md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, asection *sec, fragS *fragP)
{
/* 'opcode' points to the start of the instruction, whether
we need to change the instruction's fixed encoding. */
- char *opcode = fragP->fr_literal + fragP->fr_fix;
+ char *opcode = &fragP->fr_literal[0] + fragP->fr_fix;
bfd_reloc_code_real_type reloc;
subseg_change (sec, 0);