aboutsummaryrefslogtreecommitdiff
path: root/gcc/cpphash.h
diff options
context:
space:
mode:
authorGeoffrey Keating <geoffk@apple.com>2004-01-17 00:37:47 +0000
committerGeoffrey Keating <geoffk@gcc.gnu.org>2004-01-17 00:37:47 +0000
commit73e61092e104b922e0f83f63fe988795cebe46bf (patch)
treeda307f1c660e3c776f8f7737d4a9ccdfec5ed91e /gcc/cpphash.h
parent790b6144d14ef4c6cc8559e0399e724e6f855092 (diff)
downloadgcc-73e61092e104b922e0f83f63fe988795cebe46bf.zip
gcc-73e61092e104b922e0f83f63fe988795cebe46bf.tar.gz
gcc-73e61092e104b922e0f83f63fe988795cebe46bf.tar.bz2
[multiple changes]
2004-01-15 Geoffrey Keating <geoffk@apple.com> * Makefile.in (MD5_H): New. (fold-const.o): Depend on md5.h. (dwarf2out.o): Likewise. (cppfiles.o): Likewise. * cppfiles.c: Include md5.h. (should_stack_file): Check against list read from PCH file. (struct pchf_data): New. (pchf): New variable. (struct pchf_adder_info): New. (pchf_adder): New. (pchf_save_compare): New. (_cpp_save_file_entries): New. (_cpp_read_file_entries): New. (struct pchf_compare_data): New. (pchf_compare): New. (check_file_against_entries): New. * cpphash.h (_cpp_save_file_entries): Prototype. (_cpp_read_file_entries): Prototype. * cpppch.c (cpp_write_pch_state): Write the list of headers. (cpp_read_state): Read the list of headers. Index: testsuite/ChangeLog 2004-01-16 Geoffrey Keating <geoffk@apple.com> * gcc.dg/pch/import-1.c: New. * gcc.dg/pch/import-1.hs: New. * gcc.dg/pch/import-1a.h: New. * gcc.dg/pch/import-1b.h: New. * gcc.dg/pch/import-1c.h: New. From-SVN: r76016
Diffstat (limited to 'gcc/cpphash.h')
-rw-r--r--gcc/cpphash.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/cpphash.h b/gcc/cpphash.h
index 6c13ea1..ddac566 100644
--- a/gcc/cpphash.h
+++ b/gcc/cpphash.h
@@ -530,6 +530,8 @@ extern void _cpp_report_missing_guards (cpp_reader *);
extern void _cpp_init_files (cpp_reader *);
extern void _cpp_cleanup_files (cpp_reader *);
extern void _cpp_pop_file_buffer (cpp_reader *, struct _cpp_file *);
+extern bool _cpp_save_file_entries (cpp_reader *pfile, FILE *f);
+extern bool _cpp_read_file_entries (cpp_reader *, FILE *);
/* In cppexp.c */
extern bool _cpp_parse_expr (cpp_reader *);