aboutsummaryrefslogtreecommitdiff
path: root/gcc/cpplex.c
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>2003-06-16 19:14:22 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>2003-06-16 19:14:22 +0000
commit9a23858679e48d0b7568e25ebd2a5c92ed250b31 (patch)
tree03f4154c601d605201e4a3d1cc5920b07d982fde /gcc/cpplex.c
parent786a48dd970b9fb5825bd092278989b0cecacbc7 (diff)
downloadgcc-9a23858679e48d0b7568e25ebd2a5c92ed250b31.zip
gcc-9a23858679e48d0b7568e25ebd2a5c92ed250b31.tar.gz
gcc-9a23858679e48d0b7568e25ebd2a5c92ed250b31.tar.bz2
builtin-attrs.def, [...]: Don't use macros from "symcat.h", instead rely on ISO C.
* builtin-attrs.def, builtin-attrs.def, builtins.c, cpplex.c, cpplib.c, gencheck.c, gengenrtl.c, machmode.def, protoize.c: Don't use macros from "symcat.h", instead rely on ISO C. * system.h: Don't include "symcat.h". * configure.in (AC_C_STRINGIZE): Delete. * config.in, configure: Regenerate. From-SVN: r68035
Diffstat (limited to 'gcc/cpplex.c')
-rw-r--r--gcc/cpplex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cpplex.c b/gcc/cpplex.c
index 72a5e4d..c635743 100644
--- a/gcc/cpplex.c
+++ b/gcc/cpplex.c
@@ -44,7 +44,7 @@ static const unsigned char *const digraph_spellings[] =
{ U"%:", U"%:%:", U"<:", U":>", U"<%", U"%>" };
#define OP(e, s) { SPELL_OPERATOR, U s },
-#define TK(e, s) { s, U STRINGX (e) },
+#define TK(e, s) { s, U #e },
static const struct token_spelling token_spellings[N_TTYPES] = { TTYPE_TABLE };
#undef OP
#undef TK