diff options
author | Neil Booth <neil@daikokuya.demon.co.uk> | 2001-08-21 06:20:18 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2001-08-21 06:20:18 +0000 |
commit | d7bc7a9850ac55871f1108c491585118e10afd04 (patch) | |
tree | d3294a0e95ec060c7d36c19a66723166c94ce0f9 /gcc/cpphash.h | |
parent | bb1a503c19ca810ff94db1674cbe607f903d1ffc (diff) | |
download | gcc-d7bc7a9850ac55871f1108c491585118e10afd04.zip gcc-d7bc7a9850ac55871f1108c491585118e10afd04.tar.gz gcc-d7bc7a9850ac55871f1108c491585118e10afd04.tar.bz2 |
cpphash.h (_cpp_push_next_buffer): New.
* cpphash.h (_cpp_push_next_buffer): New.
* cppinit.c (do_includes): Remove.
(push_include, free_chain, _cpp_push_next_buffer): New.
(cpp_start_read): Use them to rework command line option handling.
(cpp_handle_option): Combine handling of -include and -imacros.
* cpplex.c (_cpp_lex_token): Push a new -include buffer if
appropriate. Always insert missing \n at EOF.
* cpplib.c (start_directive): Get the directive position right.
* cppmain.c (cb_file_change): Always print the first line, unless
preprocessed.
From-SVN: r45070
Diffstat (limited to 'gcc/cpphash.h')
-rw-r--r-- | gcc/cpphash.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/cpphash.h b/gcc/cpphash.h index 0a24f4d..f530e55 100644 --- a/gcc/cpphash.h +++ b/gcc/cpphash.h @@ -419,6 +419,9 @@ extern unsigned char *_cpp_next_chunk PARAMS ((cpp_pool *, unsigned int, extern void _cpp_lock_pool PARAMS ((cpp_pool *)); extern void _cpp_unlock_pool PARAMS ((cpp_pool *)); +/* In cppinit.c. */ +extern bool _cpp_push_next_buffer PARAMS ((cpp_reader *)); + /* In cpplib.c */ extern int _cpp_test_assertion PARAMS ((cpp_reader *, int *)); extern int _cpp_handle_directive PARAMS ((cpp_reader *, int)); |