]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
cpplib.c (copy_rest_of_line): Revert previous change: don't bail out early if we...
authorZack Weinberg <zack@wolery.cumb.org>
Sun, 6 Feb 2000 20:08:22 +0000 (20:08 +0000)
committerZack Weinberg <zack@gcc.gnu.org>
Sun, 6 Feb 2000 20:08:22 +0000 (20:08 +0000)
* 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
gcc/cpplib.c

index 06b32fb45a2a26c428d7c8a08e906c0b81eb65bd..79cad6083873b0dd810d6c3f15bfec24e43a7ea0 100644 (file)
@@ -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.
index 40c3c3a94b63bd70addd76230ff1914b630b8bca..45b35f4a3220ef47524f1cf341baf86c861e4973 100644 (file)
@@ -478,8 +478,6 @@ copy_rest_of_line (pfile)
          /* else fall through */
        case '-':
          c = skip_comment (pfile, c);
-         if (c == ' ')
-           return;
          break;
 
        case '\f':