From 6c115e16cadbca943396df6078b1c596fec49b73 Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Mon, 25 May 2020 16:17:50 -0700 Subject: [PATCH] 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]. --- gas/ChangeLog | 5 +++++ gas/config/tc-cr16.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index 1b0ec36dec2..96c78092a04 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2020-05-25 H.J. Lu + + * config/tc-cr16.c (md_convert_frag): Replace fragP->fr_literal + with &fragP->fr_literal[0]. + 2020-05-25 H.J. Lu * config/tc-csky.c (md_convert_frag): Replace fragp->fr_literal 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); -- 2.30.2