diff options
author | Neil Booth <neilb@earthling.net> | 2000-11-28 21:34:30 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2000-11-28 21:34:30 +0000 |
commit | 8dc4676ddb34f9749798446b9ad69382ca1c52d0 (patch) | |
tree | b95d79c17bb443cf45f6a1d401cede6a20cc135b /gcc/cppmain.c | |
parent | c77e04ae3ae833109b0aab9ff62f1882879abefd (diff) | |
download | gcc-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/cppmain.c')
-rw-r--r-- | gcc/cppmain.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cppmain.c b/gcc/cppmain.c index 8b15f65..cc958e0 100644 --- a/gcc/cppmain.c +++ b/gcc/cppmain.c @@ -95,7 +95,7 @@ main (argc, argv) if (CPP_BUFFER (pfile)) { if (CPP_OPTION (pfile, no_output)) - cpp_scan_buffer_nooutput (pfile); + cpp_scan_buffer_nooutput (pfile, 1); else scan_buffer (pfile); } |