Commit a1ec5747 by Nicola Pero Committed by Nicola Pero

In gcc/: 2010-09-29 Nicola Pero <nicola.pero@meta-innovation.com>

In gcc/:
2010-09-29  Nicola Pero  <nicola.pero@meta-innovation.com>

       * c-parser.c (c_lex_one_token): In Objective-C, do not replace
       token->value with the canonical spelling.  Do exactly like C and
       C++ and leave it as it is.

From-SVN: r164708
parent fd930388
2010-09-29 Nicola Pero <nicola.pero@meta-innovation.com>
* c-parser.c (c_lex_one_token): In Objective-C, do not replace
token->value with the canonical spelling. Do exactly like C and
C++ and leave it as it is.
2010-09-28 Richard Henderson <rth@redhat.com>
* config/alpha/alpha.c (alpha_builtins): New.
......@@ -242,8 +242,6 @@ c_lex_one_token (c_parser *parser, c_token *token)
&& (!OBJC_IS_PQ_KEYWORD (rid_code)
|| parser->objc_pq_context))
{
/* Return the canonical spelling for this keyword. */
token->value = ridpointers[(int) rid_code];
token->type = CPP_KEYWORD;
token->keyword = rid_code;
break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment