diff options
author | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-03-22 22:29:07 +0000 |
---|---|---|
committer | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-03-22 22:29:07 +0000 |
commit | 34cf330fae5b6d3bca48e1fadf7b7ad4ec47c80d (patch) | |
tree | b7200ed8ce94b6f6fbb96d7a9bf0bea3ec37efdd /gcc/cpphash.h | |
parent | 0837bbb770267c33b479d28b0abeced8cc793564 (diff) | |
download | gcc-34cf330fae5b6d3bca48e1fadf7b7ad4ec47c80d.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51195 138bc75d-0d04-0410-961f-82ee72b054a4
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 03de93f9644..3112bdb3b37 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; |