diff options
author | Zack Weinberg <zack@wolery.cumb.org> | 2000-02-06 20:08:22 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2000-02-06 20:08:22 +0000 |
commit | 25e309705ac7405b86e15bc4db7e58b7febdfdc2 (patch) | |
tree | f2d5a23fa2ba480ea52c173d02a48df7234f9d2e /gcc | |
parent | 9a7372d64614a15d430fdf60a925a8958eec3ff3 (diff) | |
download | gcc-25e309705ac7405b86e15bc4db7e58b7febdfdc2.zip gcc-25e309705ac7405b86e15bc4db7e58b7febdfdc2.tar.gz gcc-25e309705ac7405b86e15bc4db7e58b7febdfdc2.tar.bz2 |
cpplib.c (copy_rest_of_line): Revert previous change: don't bail out early if we hit a line comment.
* cpplib.c (copy_rest_of_line): Revert previous change: don't
bail out early if we hit a line comment.
From-SVN: r31828
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/cpplib.c | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 06b32fb..79cad60 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-02-06 Zack Weinberg <zack@wolery.cumb.org> + + * cpplib.c (copy_rest_of_line): Revert previous change: don't + bail out early if we hit a line comment. + 2000-02-06 Richard Henderson <rth@cygnus.com> * flow.c (flow_delete_insn, make_edge, remove_edge): Export. diff --git a/gcc/cpplib.c b/gcc/cpplib.c index 40c3c3a..45b35f4 100644 --- a/gcc/cpplib.c +++ b/gcc/cpplib.c @@ -478,8 +478,6 @@ copy_rest_of_line (pfile) /* else fall through */ case '-': c = skip_comment (pfile, c); - if (c == ' ') - return; break; case '\f': |