From 25e309705ac7405b86e15bc4db7e58b7febdfdc2 Mon Sep 17 00:00:00 2001 From: Zack Weinberg Date: Sun, 6 Feb 2000 20:08:22 +0000 Subject: [PATCH] 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 --- gcc/ChangeLog | 5 +++++ gcc/cpplib.c | 2 -- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 06b32fb45a2..79cad608387 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-02-06 Zack Weinberg + + * 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 * flow.c (flow_delete_insn, make_edge, remove_edge): Export. diff --git a/gcc/cpplib.c b/gcc/cpplib.c index 40c3c3a94b6..45b35f4a322 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': -- 2.30.2