From 0bae9e9ec550c940e263b37f577bf11b2dabf934 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Wed, 12 Jul 2017 12:17:02 +0100 Subject: Fix compile time warnings building the binutils with gcc 7.1.1. bfd * elf32-xtensa.c (elf_xtensa_get_plt_section): Increase length of plt_name buffer. (elf_xtensa_get_gotplt_section): Increase length of got_name buffer. * mach-o-arm.c (bfd_mach_o_arm_canonicalize_one_reloc): Add a default return of FALSE. * mach-o-i386.c (bfd_mach_o_i386_canonicalize_one_reloc): Add a default return of FALSE. binutils * dwarf.c (dwarf_vmatoa_1): Do not pass a NULL string pointer to sprintf. * srconv.c (walk_tree_type): Initialise the spare field of the IT_dty structure. gas * config/tc-pru.c (md_assemble): Add continue statement after handling 'E' operand character. * config/tc-v850.c (md_assemble): Initialise the 'insn' variable. --- gas/ChangeLog | 7 +++++++ gas/config/tc-pru.c | 7 +++++-- gas/config/tc-v850.c | 3 +-- 3 files changed, 13 insertions(+), 4 deletions(-) (limited to 'gas') diff --git a/gas/ChangeLog b/gas/ChangeLog index 829256a..e2c8f53 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,10 @@ +2017-07-12 Nick Clifton + + Fix compile time warnings using gcc 7.1.1. + * config/tc-pru.c (md_assemble): Add continue statement after + handling 'E' operand character. + * config/tc-v850.c (md_assemble): Initialise the 'insn' variable. + 2017-07-05 James Greenhalgh * config/tc-arm.c (arm_cpus): Add Cortex-A55 and Cortex-A75. diff --git a/gas/config/tc-pru.c b/gas/config/tc-pru.c index 53ea7ef..d5aa5a5 100644 --- a/gas/config/tc-pru.c +++ b/gas/config/tc-pru.c @@ -296,9 +296,10 @@ typedef enum static PRU_MODE pru_mode = PRU_MODE_ASSEMBLE; /* This function is used to in self-checking mode - to check the assembled instruction - opcode should be the assembled opcode, and exp_opcode + to check the assembled instruction. + OPCODE should be the assembled opcode, and exp_opcode the parsed string representing the expected opcode. */ + static void pru_check_assembly (unsigned int opcode, const char *exp_opcode) { @@ -1698,6 +1699,8 @@ md_assemble (char *op_str) case 'E': pru_check_assembly (insn->insn_code, *argtk++); + continue; + default: BAD_CASE (*argp); } diff --git a/gas/config/tc-v850.c b/gas/config/tc-v850.c index 7b53474..dd7b54a 100644 --- a/gas/config/tc-v850.c +++ b/gas/config/tc-v850.c @@ -2298,7 +2298,7 @@ md_assemble (char *str) const unsigned char *opindex_ptr; int next_opindex; int relaxable = 0; - unsigned long insn; + unsigned long insn = 0; unsigned long insn_size; char *f = NULL; int i; @@ -3065,7 +3065,6 @@ md_assemble (char *str) dwarf2_emit_insn (0); /* Write out the instruction. */ - if (relaxable && fc > 0) { insn_size = 2; -- cgit v1.1