* cppinit.c: Fix thinko in previous patch.
From-SVN: r32327
This commit is contained in:
parent
72c602fc01
commit
c649121029
2 changed files with 5 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue