summaryrefslogtreecommitdiff
path: root/bfd/dwarf2.c
diff options
context:
space:
mode:
authorFred Fish <fnf@specifix.com>2005-03-29 20:10:42 +0000
committerFred Fish <fnf@specifix.com>2005-03-29 20:10:42 +0000
commitba7b1089f2e44b9028f0953a24c786b792032e90 (patch)
tree6a1a75d85d2440598974755e97c2aed5ad1cac8a /bfd/dwarf2.c
parentc7d36054c0055ff6ce9513ea9214a8fe99586773 (diff)
downloadgdb-ba7b1089f2e44b9028f0953a24c786b792032e90.tar.gz
Approved by nickc@redhat.com
2005-03-29 Fred Fish <fnf@specifixinc.com> * dwarf2.c (struct comp_unit): Fix typo. (scan_unit_for_functions): Remove unused local variable "name" and dead code that set it.
Diffstat (limited to 'bfd/dwarf2.c')
-rw-r--r--bfd/dwarf2.c18
1 files changed, 1 insertions, 17 deletions
diff --git a/bfd/dwarf2.c b/bfd/dwarf2.c
index 2bd232d9da5..9c29453d46a 100644
--- a/bfd/dwarf2.c
+++ b/bfd/dwarf2.c
@@ -132,7 +132,7 @@ struct comp_unit
/* Keep the bdf convenient (for memory allocation). */
bfd *abfd;
- /* The lowest and higest addresses contained in this compilation
+ /* The lowest and highest addresses contained in this compilation
unit as specified in the compilation unit header. */
struct arange arange;
@@ -1326,7 +1326,6 @@ scan_unit_for_functions (struct comp_unit *unit)
struct abbrev_info *abbrev;
struct attribute attr;
struct funcinfo *func;
- char *name = 0;
abbrev_number = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
info_ptr += bytes_read;
@@ -1370,9 +1369,6 @@ scan_unit_for_functions (struct comp_unit *unit)
break;
case DW_AT_name:
-
- name = attr.u.str;
-
/* Prefer DW_AT_MIPS_linkage_name over DW_AT_name. */
if (func->name == NULL)
func->name = attr.u.str;
@@ -1394,18 +1390,6 @@ scan_unit_for_functions (struct comp_unit *unit)
break;
}
}
- else
- {
- switch (attr.name)
- {
- case DW_AT_name:
- name = attr.u.str;
- break;
-
- default:
- break;
- }
- }
}
if (abbrev->has_children)