diff options
Diffstat (limited to 'gcc/cpplib.c')
-rw-r--r-- | gcc/cpplib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cpplib.c b/gcc/cpplib.c index 05d3d87..9e93e4d 100644 --- a/gcc/cpplib.c +++ b/gcc/cpplib.c @@ -476,7 +476,7 @@ read_line_number (pfile, num) } else { - if (type != CPP_VSPACE && type != CPP_EOF) + if (type != CPP_EOF) cpp_error (pfile, "invalid format #line"); return 0; } @@ -545,7 +545,7 @@ do_line (pfile) str = tok->val.name.text; len = tok->val.name.len; - if (type == CPP_VSPACE || type == CPP_EOF) + if (type == CPP_EOF) goto done; else if (type != CPP_STRING) { |