summaryrefslogtreecommitdiff
path: root/gcc/c-lex.c
diff options
context:
space:
mode:
authorNeil Booth <neil@daikokuya.co.uk>2003-04-22 19:28:00 +0000
committerNeil Booth <neil@gcc.gnu.org>2003-04-22 19:28:00 +0000
commit1067694a52b1cb7b5508c1240cc1d58bc71113d4 (patch)
tree0004496cf3900a93b9e0ad258622e9c33e36e97d /gcc/c-lex.c
parent45aca21f40ea1aad7cf94857e064fa0cd9ea1a93 (diff)
downloadgcc-1067694a52b1cb7b5508c1240cc1d58bc71113d4.tar.gz
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/c-lex.c')
-rw-r--r--gcc/c-lex.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/gcc/c-lex.c b/gcc/c-lex.c
index ec16c15397f..e6017d3141a 100644
--- a/gcc/c-lex.c
+++ b/gcc/c-lex.c
@@ -344,12 +344,9 @@ c_lex (value)
*value = NULL_TREE;
switch (tok->type)
{
- /* Issue this error here, where we can get at tok->val.c. */
case CPP_OTHER:
- if (ISGRAPH (tok->val.c))
- error ("stray '%c' in program", tok->val.c);
- else
- error ("stray '\\%o' in program", tok->val.c);
+ error ("stray token \"%s\" in program",
+ cpp_token_as_text (parse_in, tok));
goto retry;
case CPP_NAME: