aboutsummaryrefslogtreecommitdiff
path: root/gcc/cppmacro.c
diff options
context:
space:
mode:
authorNeil Booth <neil@daikokuya.co.uk>2002-07-01 12:47:54 +0000
committerNeil Booth <neil@gcc.gnu.org>2002-07-01 12:47:54 +0000
commit590e1987d2ed82ea4c6b900d243df3852e272cde (patch)
treefb0aa34a235b0da95674aa0a5181f244b7f205a6 /gcc/cppmacro.c
parent8bf3ccbbbd4cfbcd1ca9e16f57af9c7ae387b07d (diff)
downloadgcc-590e1987d2ed82ea4c6b900d243df3852e272cde.zip
gcc-590e1987d2ed82ea4c6b900d243df3852e272cde.tar.gz
gcc-590e1987d2ed82ea4c6b900d243df3852e272cde.tar.bz2
* cppmacro.c: Forgotten commit.
From-SVN: r55134
Diffstat (limited to 'gcc/cppmacro.c')
-rw-r--r--gcc/cppmacro.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/gcc/cppmacro.c b/gcc/cppmacro.c
index 99cdc19..6b1fcec 100644
--- a/gcc/cppmacro.c
+++ b/gcc/cppmacro.c
@@ -1136,8 +1136,12 @@ cpp_scan_nooutput (pfile)
transparently continuing with the including file. */
pfile->buffer->return_at_eof = true;
- while (cpp_get_token (pfile)->type != CPP_EOF)
- ;
+ if (CPP_OPTION (pfile, traditional))
+ while (_cpp_read_logical_line_trad (pfile))
+ ;
+ else
+ while (cpp_get_token (pfile)->type != CPP_EOF)
+ ;
}
/* Step back one (or more) tokens. Can only step mack more than 1 if