cppmain.c (cpp_preprocess_file): Loop to pop any -included buffers.

* cppmain.c (cpp_preprocess_file): Loop to pop any -included
	buffers.

From-SVN: r58933
This commit is contained in:
Neil Booth 2002-11-08 20:15:05 +00:00 committed by Neil Booth
parent ffdf5eae7f
commit e6e8c77230
2 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2002-11-08 Neil Booth <neil@daikokuya.co.uk>
* cppmain.c (cpp_preprocess_file): Loop to pop any -included
buffers.
2002-11-08 Kazu Hirata <kazu@cs.umass.edu>
* config/h8300/h8300.md (two anonymous test insns): New.

View File

@ -78,7 +78,12 @@ cpp_preprocess_file (pfile, in_fname, out_stream)
/* A successful cpp_read_main_file guarantees that we can call
cpp_scan_nooutput or cpp_get_token next. */
if (options->no_output)
cpp_scan_nooutput (pfile);
{
/* Scan -included buffers, then the main file. */
while (pfile->buffer->prev)
cpp_scan_nooutput (pfile);
cpp_scan_nooutput (pfile);
}
else if (options->traditional)
scan_translation_unit_trad (pfile);
else