aboutsummaryrefslogtreecommitdiff
path: root/gcc/cpplex.c
diff options
context:
space:
mode:
authorNeil Booth <neilb@earthling.net>2000-11-14 18:32:06 +0000
committerNeil Booth <neil@gcc.gnu.org>2000-11-14 18:32:06 +0000
commit7f2f1a6633e44161efbfc2edbf2aaec9574f274d (patch)
tree5e118199d108d9149834d978b08d106ac77d7ea8 /gcc/cpplex.c
parentf36d6244de2d705437102b9e3ebf34589c92edea (diff)
downloadgcc-7f2f1a6633e44161efbfc2edbf2aaec9574f274d.zip
gcc-7f2f1a6633e44161efbfc2edbf2aaec9574f274d.tar.gz
gcc-7f2f1a6633e44161efbfc2edbf2aaec9574f274d.tar.bz2
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
Diffstat (limited to 'gcc/cpplex.c')
-rw-r--r--gcc/cpplex.c4
1 files changed, 2 insertions, 2 deletions
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);