Commit 5e93e9fe authored by ghazi's avatar ghazi
Browse files

* cpplex.c (T, I, S, C, N): Avoid non-constant initializers.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@34959 138bc75d-0d04-0410-961f-82ee72b054a4
parent 291cb662
2000-07-11 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* cpplex.c (T, I, S, C, N): Avoid non-constant initializers.
2000-07-11 Neil Booth <NeilB@earthling.net>
 
* cpp.texi: Update.
......
......@@ -162,11 +162,11 @@ token_spellings [N_TTYPES + 1] = {TTYPE_TABLE {0, 0} };
#undef N
/* For debugging: the internal names of the tokens. */
#define T(e, s) U STRINGX(e) + 4,
#define I(e, s) U STRINGX(e) + 4,
#define S(e, s) U STRINGX(e) + 4,
#define C(e, s) U STRINGX(e) + 4,
#define N(e, s) U STRINGX(e) + 4,
#define T(e, s) U STRINGX(e),
#define I(e, s) U STRINGX(e),
#define S(e, s) U STRINGX(e),
#define C(e, s) U STRINGX(e),
#define N(e, s) U STRINGX(e),
const U_CHAR *const token_names[N_TTYPES] = { TTYPE_TABLE };
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment