diff options
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': |