diff options
Diffstat (limited to 'gcc/cp/parser.c')
-rw-r--r-- | gcc/cp/parser.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/cp/parser.c b/gcc/cp/parser.c index 5827e5e..0ea0f93 100644 --- a/gcc/cp/parser.c +++ b/gcc/cp/parser.c @@ -254,7 +254,7 @@ cp_lexer_new_main (void) /* Tell cpplib we want CPP_PRAGMA tokens. */ cpp_get_options (parse_in)->defer_pragmas = true; - /* Tell c_lex not to merge string constants. */ + /* Tell pragma_lex not to merge string constants. */ c_lex_return_raw_strings = true; c_common_no_more_pch (); @@ -297,8 +297,8 @@ cp_lexer_new_main (void) lexer->next_token = lexer->buffer_length ? buffer : (cp_token *)&eof_token; /* Pragma processing (via cpp_handle_deferred_pragma) may result in - direct calls to c_lex. Those callers all expect c_lex to do - string constant concatenation. */ + direct calls to pragma_lex. Those callers all expect pragma_lex + to do string constant concatenation. */ c_lex_return_raw_strings = false; /* Subsequent preprocessor diagnostics should use compiler |