From 7f2f1a6633e44161efbfc2edbf2aaec9574f274d Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Tue, 14 Nov 2000 18:32:06 +0000 Subject: cppexp.c (parse_defined): Call cpp_get_token not _cpp_get_token. * cppexp.c (parse_defined): Call cpp_get_token not _cpp_get_token. (lex): Similarly. * cpplex.c (cpp_output_line): Similarly. * cpplib.c (glue_header_name, do_line, do_ident, parse_answer, parse_assertion): Similarly. (_cpp_handle_diretive): Don't save to lookaheads when processing directives. * cppmacro.c (parse_arg, expand_arg): Call cpp_get_token not _cpp_get_token. (funlike_invocation_p): Don't save to lookaheads when pre-expanding arguments. (_cpp_get_token): Delete. (cpp_get_token): Merge contents of _cpp_get_token. From-SVN: r37462 --- gcc/cpplex.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gcc/cpplex.c') diff --git a/gcc/cpplex.c b/gcc/cpplex.c index 8717104..96e2454 100644 --- a/gcc/cpplex.c +++ b/gcc/cpplex.c @@ -1677,12 +1677,12 @@ cpp_output_line (pfile, fp) { cpp_token token; - _cpp_get_token (pfile, &token); + cpp_get_token (pfile, &token); token.flags &= ~PREV_WHITE; while (token.type != CPP_EOF) { cpp_output_token (&token, fp); - _cpp_get_token (pfile, &token); + cpp_get_token (pfile, &token); } putc ('\n', fp); -- cgit v1.1