From e8e80198e9bc4e9156c5745f9b77ac9e0f8e7322 Mon Sep 17 00:00:00 2001 From: Michael Snyder Date: Mon, 28 Feb 2011 23:12:56 +0000 Subject: [PATCH] 2011-02-28 Michael Snyder * dwarf2read.c (dw2_get_file_names): Discard unused value. (dwarf2_add_typedef): Delete unused variable. (read_namespace): Ditto. (dwarf_decode_macros): Ditto. --- gdb/ChangeLog | 5 +++++ gdb/dwarf2read.c | 11 ++++------- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 9ef42a6f056..69d2b639a1f 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2011-02-28 Michael Snyder + * dwarf2read.c (dw2_get_file_names): Discard unused value. + (dwarf2_add_typedef): Delete unused variable. + (read_namespace): Ditto. + (dwarf_decode_macros): Ditto. + * m2-lang.c (evaluate_subexp_modula2): Discard unused variable. * opencl-lang.c (evaluate_subexp_opencl): Discard unused value. diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c index 96019676bda..d40be86349d 100644 --- a/gdb/dwarf2read.c +++ b/gdb/dwarf2read.c @@ -2172,8 +2172,8 @@ dw2_get_file_names (struct objfile *objfile, if (this_cu->from_debug_types) info_ptr += 8 /*signature*/ + cu.header.offset_size; init_cu_die_reader (&reader_specs, &cu); - info_ptr = read_full_die (&reader_specs, &comp_unit_die, info_ptr, - &has_children); + read_full_die (&reader_specs, &comp_unit_die, info_ptr, + &has_children); lh = NULL; slot = NULL; @@ -6425,7 +6425,6 @@ dwarf2_add_typedef (struct field_info *fip, struct die_info *die, struct dwarf2_cu *cu) { struct objfile *objfile = cu->objfile; - struct gdbarch *gdbarch = get_objfile_arch (objfile); struct typedef_field_list *new_field; struct attribute *attr; struct typedef_field *fp; @@ -7590,7 +7589,6 @@ static void read_namespace (struct die_info *die, struct dwarf2_cu *cu) { struct objfile *objfile = cu->objfile; - const char *name; int is_anonymous; /* Add a symbol associated to this if we haven't seen the namespace @@ -7604,7 +7602,7 @@ read_namespace (struct die_info *die, struct dwarf2_cu *cu) type = read_type_die (die, cu); new_symbol (die, type, cu); - name = namespace_name (die, &is_anonymous, cu); + namespace_name (die, &is_anonymous, cu); if (is_anonymous) { const char *previous_prefix = determine_prefix (die, cu); @@ -14327,11 +14325,10 @@ dwarf_decode_macros (struct line_header *lh, unsigned int offset, { unsigned int bytes_read; int constant; - char *string; constant = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read); mac_ptr += bytes_read; - string = read_direct_string (abfd, mac_ptr, &bytes_read); + read_direct_string (abfd, mac_ptr, &bytes_read); mac_ptr += bytes_read; /* We don't recognize any vendor extensions. */ -- 2.30.2