Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(10)

Unified Diff: gcc/cp/parser.c

Issue 5846054: [pph] Tagless Types; Macro Redefines (Closed) Base URL: svn+ssh://gcc.gnu.org/svn/gcc/branches/pph/
Patch Set: Created 13 years ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gcc/cp/name-lookup.c ('k') | gcc/cp/semantics.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gcc/cp/parser.c
===================================================================
--- gcc/cp/parser.c (revision 185481)
+++ gcc/cp/parser.c (working copy)
@@ -1193,11 +1193,22 @@ cp_lexer_print_token (FILE * stream, cp_
case CPP_KEYWORD:
/* Some keywords have a value that is not an IDENTIFIER_NODE.
For example, `struct' is mapped to an INTEGER_CST. */
- if (TREE_CODE (token->u.value) != IDENTIFIER_NODE)
- break;
- /* else fall through */
+ if (token->u.value)
+ {
+ if (TREE_CODE (token->u.value) != IDENTIFIER_NODE)
+ break;
+ /* else fall through */
+ }
+ else
+ {
+ fputs ("<nil>", stream);
+ break;
+ }
case CPP_NAME:
- fputs (IDENTIFIER_POINTER (token->u.value), stream);
+ if (token->u.value)
+ fputs (IDENTIFIER_POINTER (token->u.value), stream);
+ else
+ fputs ("<nil>", stream);
break;
case CPP_STRING:
@@ -14446,7 +14457,7 @@ cp_parser_enum_specifier (cp_parser* par
identifier = cp_parser_identifier (parser);
else
{
- identifier = make_anon_name ();
+ identifier = make_anon_name (input_location);
is_anonymous = true;
}
}
@@ -18636,7 +18647,7 @@ cp_parser_class_head (cp_parser* parser,
{
/* If the class was unnamed, create a dummy name. */
if (!id)
- id = make_anon_name ();
+ id = make_anon_name (input_location);
type = xref_tag (class_key, id, /*tag_scope=*/ts_current,
parser->num_template_parameter_lists);
}
« no previous file with comments | « gcc/cp/name-lookup.c ('k') | gcc/cp/semantics.c » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b