diff options
| author | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-08-02 16:29:46 +0000 | 
|---|---|---|
| committer | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-08-02 16:29:46 +0000 | 
| commit | 68faebf45b95738cc003189a646a6c9bfa1d1ee0 (patch) | |
| tree | 2f3f5d24ede7076f17367de0a1945c6a8e563d8f /gcc/cpplib.c | |
| parent | 0d0bca5f11706b6cdcf1b1e113ece57c9145d221 (diff) | |
| download | ppe42-gcc-68faebf45b95738cc003189a646a6c9bfa1d1ee0.tar.gz ppe42-gcc-68faebf45b95738cc003189a646a6c9bfa1d1ee0.zip | |
	* cppfiles.c (struct _cpp_file): Rename once_only_next to
	next_file.  Remove import and pragma_once, add once_only.
	(find_file): Add new file structures to the all_files list.
	(should_stack_file): Mark #import-ed files once-only, and
	don't stack them if the file has already been stacked.
	(_cp_mark_file_once_only): Simplify.
	* cpphash.h (struct cpp_reader): Rename once_only_files
	to all_files.  Rename saw_pragma_once to seen_once_only.
	(_cpp_mark_file_once_only): Update prototype.
	* cpplib.c (do_pragma_once): Update.
testsuite:
	* import1.c, import2.c: New tests.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70106 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cpplib.c')
| -rw-r--r-- | gcc/cpplib.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/gcc/cpplib.c b/gcc/cpplib.c index 505f48201c3..844a5daec6e 100644 --- a/gcc/cpplib.c +++ b/gcc/cpplib.c @@ -1167,7 +1167,7 @@ do_pragma_once (cpp_reader *pfile)      cpp_error (pfile, DL_WARNING, "#pragma once in main file");    check_eol (pfile); -  _cpp_mark_file_once_only (pfile, pfile->buffer->file, false); +  _cpp_mark_file_once_only (pfile, pfile->buffer->file);  }  /* Handle #pragma GCC poison, to poison one or more identifiers so | 

