From 6438229074032cc548209c05c42bd57873a72651 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Tue, 31 Aug 2010 20:03:20 +0000 Subject: [PATCH] PR c++/11961: * dwarf2read.c (new_symbol_full) : Don't set TYPE_NAME on the type. --- gdb/ChangeLog | 6 ++++++ gdb/dwarf2read.c | 27 ++++++++++++++------------- 2 files changed, 20 insertions(+), 13 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 1febb54aad..89d615643d 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2010-08-31 Tom Tromey + + PR c++/11961: + * dwarf2read.c (new_symbol_full) : + Don't set TYPE_NAME on the type. + 2010-08-31 Michael Snyder * infrun.c (set_exec_direction_func): Error out if target does not diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c index ac954e66fc..c531864056 100644 --- a/gdb/dwarf2read.c +++ b/gdb/dwarf2read.c @@ -10729,20 +10729,21 @@ new_symbol_full (struct die_info *die, struct type *type, struct dwarf2_cu *cu, && (cu->language == language_cplus || cu->language == language_java) ? &global_symbols : cu->list_in_scope); - } - /* The semantics of C++ state that "struct foo { ... }" also - defines a typedef for "foo". A Java class declaration also - defines a typedef for the class. */ - if (cu->language == language_cplus - || cu->language == language_java - || cu->language == language_ada) - { - /* The symbol's name is already allocated along with - this objfile, so we don't need to duplicate it for - the type. */ - if (TYPE_NAME (SYMBOL_TYPE (sym)) == 0) - TYPE_NAME (SYMBOL_TYPE (sym)) = SYMBOL_SEARCH_NAME (sym); + /* The semantics of C++ state that "struct foo { + ... }" also defines a typedef for "foo". A Java + class declaration also defines a typedef for the + class. */ + if (cu->language == language_cplus + || cu->language == language_java + || cu->language == language_ada) + { + /* The symbol's name is already allocated along + with this objfile, so we don't need to + duplicate it for the type. */ + if (TYPE_NAME (SYMBOL_TYPE (sym)) == 0) + TYPE_NAME (SYMBOL_TYPE (sym)) = SYMBOL_SEARCH_NAME (sym); + } } } break;