diff options
Diffstat (limited to 'gcc/c-lex.c')
-rw-r--r-- | gcc/c-lex.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/gcc/c-lex.c b/gcc/c-lex.c index bb09b88d80b..914da81cd92 100644 --- a/gcc/c-lex.c +++ b/gcc/c-lex.c @@ -997,12 +997,7 @@ c_lex (value) goto retry; case CPP_NAME: - { - tree node = HT_IDENT_TO_GCC_IDENT (HT_NODE (tok.val.node)); - if (TREE_CODE (node) != IDENTIFIER_NODE) - make_identifier (node); - *value = node; - } + *value = HT_IDENT_TO_GCC_IDENT (HT_NODE (tok.val.node)); break; case CPP_INT: |