aboutsummaryrefslogtreecommitdiff
path: root/gcc/cp
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/cp')
-rw-r--r--gcc/cp/ChangeLog6
-rw-r--r--gcc/cp/parser.c7
2 files changed, 9 insertions, 4 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index e128fe1..c9ce9ce 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,9 @@
+2008-11-28 Jason Merrill <jason@redhat.com>
+
+ PR c++/38278
+ * parser.c (cp_parser_class_name): Only call
+ maybe_note_name_used_in_class if we actually found a class name.
+
2008-11-25 Jason Merrill <jason@redhat.com>
PR c++/28743
diff --git a/gcc/cp/parser.c b/gcc/cp/parser.c
index 8fdd58c..6870037 100644
--- a/gcc/cp/parser.c
+++ b/gcc/cp/parser.c
@@ -14686,6 +14686,7 @@ cp_parser_class_name (cp_parser *parser,
tree scope;
bool typename_p;
cp_token *token;
+ tree identifier = NULL_TREE;
/* All class-names start with an identifier. */
token = cp_lexer_peek_token (parser->lexer);
@@ -14711,7 +14712,6 @@ cp_parser_class_name (cp_parser *parser,
&& !cp_parser_nth_token_starts_template_argument_list_p (parser, 2))
{
cp_token *identifier_token;
- tree identifier;
bool ambiguous_p;
/* Look for the identifier. */
@@ -14767,9 +14767,6 @@ cp_parser_class_name (cp_parser *parser,
}
return error_mark_node;
}
- else if (decl != error_mark_node
- && !parser->scope)
- maybe_note_name_used_in_class (identifier, decl);
}
}
else
@@ -14819,6 +14816,8 @@ cp_parser_class_name (cp_parser *parser,
if (decl == error_mark_node)
cp_parser_error (parser, "expected class-name");
+ else if (identifier && !parser->scope)
+ maybe_note_name_used_in_class (identifier, decl);
return decl;
}