diff options
| author | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-11-28 21:34:30 +0000 | 
|---|---|---|
| committer | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-11-28 21:34:30 +0000 | 
| commit | 2a5f4561993a3a55ba794cbfac67ce1b6e4458d3 (patch) | |
| tree | b95d79c17bb443cf45f6a1d401cede6a20cc135b /gcc/cppinit.c | |
| parent | dd193d7c5e89b30310ed9f150baf494d4b164317 (diff) | |
| download | ppe42-gcc-2a5f4561993a3a55ba794cbfac67ce1b6e4458d3.tar.gz ppe42-gcc-2a5f4561993a3a55ba794cbfac67ce1b6e4458d3.zip | |
        * cppmacro.c (cpp_scan_buffer_nooutput): Take a boolean
        indicating whether to scan all buffers on the stack or
        just one.
        * cppinit.c (do_includes): Update.
        * cppmain.c (main): Update.
        * cpplib.h: Update prototype.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37829 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cppinit.c')
| -rw-r--r-- | gcc/cppinit.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/gcc/cppinit.c b/gcc/cppinit.c index 39e1562c936..a91a6d10414 100644 --- a/gcc/cppinit.c +++ b/gcc/cppinit.c @@ -931,7 +931,7 @@ do_includes (pfile, p, scan)        /* Later: maybe update this to use the #include "" search path  	 if cpp_read_file fails.  */        if (cpp_read_file (pfile, p->arg) && scan) -	cpp_scan_buffer_nooutput (pfile); +	cpp_scan_buffer_nooutput (pfile, 0);        q = p->next;        free (p);        p = q; | 

