* cppinit.c: Fix thinko in previous patch.

From-SVN: r32327
This commit is contained in:
Zack Weinberg 2000-03-04 17:53:04 +00:00 committed by Zack Weinberg
parent 72c602fc01
commit c649121029
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2000-03-04 Zack Weinberg <zack@wolery.cumb.org>
* cppinit.c: Fix thinko in previous patch.
Sat Mar 4 11:32:30 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* machmode.h (mode_for_size, smallest_mode_for_size): SIZE now signed.

View file

@ -216,7 +216,7 @@ enum { QUOTE = 0, BRACKET, SYSTEM, AFTER };
#else
#define ISTABLE unsigned char _cpp_IStable[256] = { 0 }; \
static void init_IStable PARAMS ((void)) { \
unsigned char *x = id;
unsigned char *x = _cpp_IStable;
#define END }
#define s(p, v) x[p] = v;
#endif