From a51bb70c8a1570f2e6fa74432578bcdf7f2785aa Mon Sep 17 00:00:00 2001 From: Weimin Pan Date: Mon, 8 Oct 2018 22:14:11 +0000 Subject: [PATCH] Fix the [-Werror=shadow=local] warning Rename local variable in value_struct_elt_for_reference() to work around the shadowing a previous local warning. --- gdb/ChangeLog | 4 ++++ gdb/valops.c | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index f074385c30..eac1dc2611 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2018-10-08 Weimin Pan + * valops.c (value_struct_elt_for_reference): Rename local variable + to work around the shadowing a previous local warning. + 2018-10-08 John Baldwin * Makefile.in (ALLDEPFILES): Add riscv-fbsd-nat.c. diff --git a/gdb/valops.c b/gdb/valops.c index 99b12751dc..c45caefbf1 100644 --- a/gdb/valops.c +++ b/gdb/valops.c @@ -3439,9 +3439,9 @@ value_struct_elt_for_reference (struct type *domain, int offset, mem_offset += boff; else { - struct type *t = check_typedef (value_type (this_v)); - t = check_typedef (TYPE_TARGET_TYPE (t)); - if (get_baseclass_offset (t, curtype, this_v, + struct type *p = check_typedef (value_type (this_v)); + p = check_typedef (TYPE_TARGET_TYPE (p)); + if (get_baseclass_offset (p, curtype, this_v, &boff, &isvirt)) mem_offset += boff; } -- 2.34.1