diff options
author | Neil Booth <neilb@earthling.net> | 2000-11-01 07:32:23 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2000-11-01 07:32:23 +0000 |
commit | 12c4f523b13177e1c2a39d80cf2e62a37b331f93 (patch) | |
tree | f65234f942514b168d79dfd9f3c583a40d360ea4 /gcc/c-parse.in | |
parent | 78e7629e9f2b78c8ade485fb2e209427d2696300 (diff) | |
download | gcc-12c4f523b13177e1c2a39d80cf2e62a37b331f93.zip gcc-12c4f523b13177e1c2a39d80cf2e62a37b331f93.tar.gz gcc-12c4f523b13177e1c2a39d80cf2e62a37b331f93.tar.bz2 |
c-parse.in (_yylex): Remove CPP_BACKSLASH case.
* c-parse.in (_yylex): Remove CPP_BACKSLASH case.
* cp/spew.c: Similarly.
* cpplex.c (_cpp_lex_token): Backslashes are now CPP_OTHER.
* cppmacro.c (stringify_arg): Similarly.
* cpplib.h (CPP_BACKSLASH): Delete.
From-SVN: r37182
Diffstat (limited to 'gcc/c-parse.in')
-rw-r--r-- | gcc/c-parse.in | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/c-parse.in b/gcc/c-parse.in index c590f31..b36264f 100644 --- a/gcc/c-parse.in +++ b/gcc/c-parse.in @@ -3259,7 +3259,6 @@ _yylex () /* These tokens should not survive translation phase 4. */ case CPP_HASH: case CPP_PASTE: - case CPP_BACKSLASH: error ("syntax error before '%s' token", NAME(last_token)); goto retry; |