diff options
author | Andreas Schwab <schwab@suse.de> | 2002-01-03 09:41:00 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@gcc.gnu.org> | 2002-01-03 09:41:00 +0000 |
commit | b7e30d8ad0eefc5560ae1e0fbb67ed02a428d874 (patch) | |
tree | cbc23e02d49a928631fef7e5b64be1beb9789c5c /gcc/cpphash.h | |
parent | ff81832f59cff40ccee928693238c92c0347a50e (diff) | |
download | gcc-b7e30d8ad0eefc5560ae1e0fbb67ed02a428d874.zip gcc-b7e30d8ad0eefc5560ae1e0fbb67ed02a428d874.tar.gz gcc-b7e30d8ad0eefc5560ae1e0fbb67ed02a428d874.tar.bz2 |
cppfiles.c (_cpp_pop_file_buffer): Change return type to bool and return true if...
* cppfiles.c (_cpp_pop_file_buffer): Change return type to bool
and return true if _cpp_push_next_buffer pushed a new include
file.
* cpplib.c (_cpp_pop_buffer): Only call obstack_free if
_cpp_pop_file_buffer did not push a new file.
* cpphash.h (_cpp_pop_file_buffer): Update declaration.
From-SVN: r48507
Diffstat (limited to 'gcc/cpphash.h')
-rw-r--r-- | gcc/cpphash.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cpphash.h b/gcc/cpphash.h index 2f558c6..703908f 100644 --- a/gcc/cpphash.h +++ b/gcc/cpphash.h @@ -390,7 +390,7 @@ extern int _cpp_compare_file_date PARAMS ((cpp_reader *, extern void _cpp_report_missing_guards PARAMS ((cpp_reader *)); extern void _cpp_init_includes PARAMS ((cpp_reader *)); extern void _cpp_cleanup_includes PARAMS ((cpp_reader *)); -extern void _cpp_pop_file_buffer PARAMS ((cpp_reader *, +extern bool _cpp_pop_file_buffer PARAMS ((cpp_reader *, struct include_file *)); /* In cppexp.c */ |