diff options
author | Neil Booth <neil@daikokuya.demon.co.uk> | 2002-03-22 22:29:07 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2002-03-22 22:29:07 +0000 |
commit | d4e6133f20c4395d16bf1ed7887f5223bd3c249b (patch) | |
tree | b7200ed8ce94b6f6fbb96d7a9bf0bea3ec37efdd /gcc/cpphash.h | |
parent | 65e6c00573077208af5011dd1bebe287ae1f2ade (diff) | |
download | gcc-d4e6133f20c4395d16bf1ed7887f5223bd3c249b.zip gcc-d4e6133f20c4395d16bf1ed7887f5223bd3c249b.tar.gz gcc-d4e6133f20c4395d16bf1ed7887f5223bd3c249b.tar.bz2 |
cpphash.h (struct cpp_reader): Remove mls_line and mls_col.
* cpphash.h (struct cpp_reader): Remove mls_line and mls_col.
* cpplex.c (unterminated): Delete.
(parse_string): No string literal may extend over multiple
lines. Suppress the error when preprocessing assembly.
* cppmain.c (scan_translation_unit): Strings are single-line.
* doc/cpp.texi: Update to match.
* testsuite/gcc.dg/cpp/multiline.c: Update to match.
From-SVN: r51195
Diffstat (limited to 'gcc/cpphash.h')
-rw-r--r-- | gcc/cpphash.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/cpphash.h b/gcc/cpphash.h index 03de93f..3112bdb 100644 --- a/gcc/cpphash.h +++ b/gcc/cpphash.h @@ -266,11 +266,6 @@ struct cpp_reader /* Error counter for exit code. */ unsigned int errors; - /* Line and column where a newline was first seen in a string - constant (multi-line strings). */ - unsigned int mls_line; - unsigned int mls_col; - /* Buffer to hold macro definition string. */ unsigned char *macro_buffer; unsigned int macro_buffer_len; |