From: Alan Modra Date: Sun, 28 Apr 2019 23:47:05 +0000 (+0930) Subject: Work around gcc9 warning bug X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8107ddcea1da07f1c4e902c17f045684beb78079;p=binutils-gdb.git Work around gcc9 warning bug * wrstabs.c (stab_start_class_type): Add assert to work around gcc9 warning. Tidy. --- diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 8fbc761b6a6..364fddb2399 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2019-04-30 Alan Modra + + * wrstabs.c (stab_start_class_type): Add assert to work around + gcc9 warning. Tidy. + 2019-04-24 Nick Clifton * objcopy.c (strip_main): Do not enable note merging by default if diff --git a/binutils/wrstabs.c b/binutils/wrstabs.c index 3d1839f131e..3e941dcefd5 100644 --- a/binutils/wrstabs.c +++ b/binutils/wrstabs.c @@ -1440,18 +1440,15 @@ stab_end_struct_type (void *p) /* Start outputting a class. */ static bfd_boolean -stab_start_class_type (void *p, const char *tag, unsigned int id, bfd_boolean structp, unsigned int size, bfd_boolean vptr, bfd_boolean ownvptr) +stab_start_class_type (void *p, const char *tag, unsigned int id, + bfd_boolean structp, unsigned int size, + bfd_boolean vptr, bfd_boolean ownvptr) { struct stab_write_handle *info = (struct stab_write_handle *) p; - bfd_boolean definition; - char *vstring; + bfd_boolean definition = FALSE; + char *vstring = NULL; - if (! vptr || ownvptr) - { - definition = FALSE; - vstring = NULL; - } - else + if (vptr && !ownvptr) { definition = info->type_stack->definition; vstring = stab_pop_type (info); @@ -1472,17 +1469,16 @@ stab_start_class_type (void *p, const char *tag, unsigned int id, bfd_boolean st } else { + assert (vstring); vtable = (char *) xmalloc (strlen (vstring) + 3); sprintf (vtable, "~%%%s", vstring); free (vstring); + if (definition) + info->type_stack->definition = TRUE; } - info->type_stack->vtable = vtable; } - if (definition) - info->type_stack->definition = TRUE; - return TRUE; }