diff options
author | Neil Booth <neil@daikokuya.co.uk> | 2003-04-22 19:28:00 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2003-04-22 19:28:00 +0000 |
commit | 1067694a52b1cb7b5508c1240cc1d58bc71113d4 (patch) | |
tree | 0004496cf3900a93b9e0ad258622e9c33e36e97d /gcc/cpplib.h | |
parent | 45aca21f40ea1aad7cf94857e064fa0cd9ea1a93 (diff) | |
download | gcc-1067694a52b1cb7b5508c1240cc1d58bc71113d4.zip gcc-1067694a52b1cb7b5508c1240cc1d58bc71113d4.tar.gz gcc-1067694a52b1cb7b5508c1240cc1d58bc71113d4.tar.bz2 |
c-lex.c (c_lex): Handle CPP_OTHER differently.
* c-lex.c (c_lex): Handle CPP_OTHER differently.
* cppexp.c (_cpp_parse_expr): Similarly.
* cpplex.c (SPELL_CHAR): Remove.
(_cpp_lex_direct): Stray chars are saved as byte strings.
(cpp_spell_token, cpp_output_token, _cpp_equiv_token): Don't
handle SPELL_CHAR.
(cpp_avoid_paste): Update handling of CPP_OTHER.
* cpplib.h: Spell CPP_OTHER like a number.
(struct cpp_token): Remove member c.
* cppmacro.c (stringify_arg): Update handling of CPP_OTHER.
From-SVN: r65951
Diffstat (limited to 'gcc/cpplib.h')
-rw-r--r-- | gcc/cpplib.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/cpplib.h b/gcc/cpplib.h index a9bdb1d..875fe5b 100644 --- a/gcc/cpplib.h +++ b/gcc/cpplib.h @@ -128,7 +128,7 @@ struct file_name_map_list; \ TK(CPP_CHAR, SPELL_STRING) /* 'char' */ \ TK(CPP_WCHAR, SPELL_STRING) /* L'char' */ \ - TK(CPP_OTHER, SPELL_CHAR) /* stray punctuation */ \ + TK(CPP_OTHER, SPELL_NUMBER) /* stray punctuation */ \ \ TK(CPP_STRING, SPELL_STRING) /* "string" */ \ TK(CPP_WSTRING, SPELL_STRING) /* L"string" */ \ @@ -184,7 +184,6 @@ struct cpp_token const cpp_token *source; /* Inherit padding from this token. */ struct cpp_string str; /* A string, or number. */ unsigned int arg_no; /* Argument no. for a CPP_MACRO_ARG. */ - unsigned char c; /* Character represented by CPP_OTHER. */ } val; }; |