diff options
author | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-11-02 08:05:45 +0000 |
---|---|---|
committer | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-11-02 08:05:45 +0000 |
commit | e3ff39a10b93b1b6d4fa9fe12a2f5c3490937a87 (patch) | |
tree | 327fd8707268cc1943c8a1da483dc0412da3e575 /gcc/c-parse.in | |
parent | b99198aa7d41172cfa94c586bb94456e7577d97d (diff) | |
download | gcc-e3ff39a10b93b1b6d4fa9fe12a2f5c3490937a87.tar.gz |
* c-lex.c (init_c_lex): Update cpp_start_read call.
(cb_ident): Update for new callback prototype.
(cb_def_pragma): Update for new cpp_get_token prototype.
(c_lex): Similarly. Use cpp_get_line.
* c-parse.in (finish_parse): Update for new cpp_finish
prototype.
* cp/lex.c (finish_parse): Similarly.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37201 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-parse.in')
-rw-r--r-- | gcc/c-parse.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-parse.in b/gcc/c-parse.in index b36264f8b4d..ed272c8fe80 100644 --- a/gcc/c-parse.in +++ b/gcc/c-parse.in @@ -3060,7 +3060,7 @@ void finish_parse () { #if USE_CPPLIB - cpp_finish (&parse_in, 0 /* no printer */); + cpp_finish (&parse_in); errorcount += parse_in.errors; #else fclose (finput); |