diff options
author | Neil Booth <neil@daikokuya.demon.co.uk> | 2001-01-18 06:32:47 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2001-01-18 06:32:47 +0000 |
commit | 6fe349a91dcba707414b5978f6090dc64281a2c8 (patch) | |
tree | 890d3155ec3e6d0527b078757a81afe4ac97bb2c /gcc/cpplib.c | |
parent | b1117741f1cb3690e04fd39175efaee1f30cace3 (diff) | |
download | gcc-6fe349a91dcba707414b5978f6090dc64281a2c8.zip gcc-6fe349a91dcba707414b5978f6090dc64281a2c8.tar.gz gcc-6fe349a91dcba707414b5978f6090dc64281a2c8.tar.bz2 |
cpplib.c (_cpp_handle_directive): Use buffer->was_skipping, not pfile->skipping (== 0).
* cpplib.c (_cpp_handle_directive): Use buffer->was_skipping,
not pfile->skipping (== 0).
From-SVN: r39108
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 78045e3..9577d72 100644 --- a/gcc/cpplib.c +++ b/gcc/cpplib.c @@ -349,7 +349,7 @@ _cpp_handle_directive (pfile, indented) } } } - else if (dname.type != CPP_EOF && ! pfile->skipping) + else if (dname.type != CPP_EOF && ! buffer->was_skipping) { /* An unknown directive. Don't complain about it in assembly source: we don't know where the comments are, and # may |