diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/c-opts.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1aec140..5af2db9c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2007-12-06 Tom Tromey <tromey@redhat.com> + + PR c/29172: + * c-opts.c (c_common_parse_file): Call cpp_clear_file_cache. + 2007-12-06 Richard Sandiford <rsandifo@nildram.co.uk> * config/mips/mips.c (mips_function_ok_for_sibcall): Check diff --git a/gcc/c-opts.c b/gcc/c-opts.c index 16710b6..a5c2270 100644 --- a/gcc/c-opts.c +++ b/gcc/c-opts.c @@ -1281,6 +1281,7 @@ c_common_parse_file (int set_yydebug) if (++i >= num_in_fnames) break; cpp_undef_all (parse_in); + cpp_clear_file_cache (parse_in); this_input_filename = cpp_read_main_file (parse_in, in_fnames[i]); /* If an input file is missing, abandon further compilation. |