aboutsummaryrefslogtreecommitdiff
path: root/gcc/cppinit.c
diff options
context:
space:
mode:
authorNeil Booth <neilb@earthling.net>2000-11-28 21:34:30 +0000
committerNeil Booth <neil@gcc.gnu.org>2000-11-28 21:34:30 +0000
commit8dc4676ddb34f9749798446b9ad69382ca1c52d0 (patch)
treeb95d79c17bb443cf45f6a1d401cede6a20cc135b /gcc/cppinit.c
parentc77e04ae3ae833109b0aab9ff62f1882879abefd (diff)
downloadgcc-8dc4676ddb34f9749798446b9ad69382ca1c52d0.zip
gcc-8dc4676ddb34f9749798446b9ad69382ca1c52d0.tar.gz
gcc-8dc4676ddb34f9749798446b9ad69382ca1c52d0.tar.bz2
cppmacro.c (cpp_scan_buffer_nooutput): Take a boolean indicating whether to scan all buffers on the stack or just one.
* 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. From-SVN: r37829
Diffstat (limited to 'gcc/cppinit.c')
-rw-r--r--gcc/cppinit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cppinit.c b/gcc/cppinit.c
index 39e1562..a91a6d1 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;