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/cpplib.h | |
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/cpplib.h')
-rw-r--r-- | gcc/cpplib.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/cpplib.h b/gcc/cpplib.h index de7a1a5..9b99dcc 100644 --- a/gcc/cpplib.h +++ b/gcc/cpplib.h @@ -116,7 +116,6 @@ struct htab; /* The remainder of the punctuation. Order is not significant. */ \ OP(CPP_SEMICOLON, ";") /* structure */ \ OP(CPP_ELLIPSIS, "...") \ - OP(CPP_BACKSLASH, "\\") \ OP(CPP_PLUS_PLUS, "++") /* increment */ \ OP(CPP_MINUS_MINUS, "--") \ OP(CPP_DEREF, "->") /* accessors */ \ |