diff options
author | Nicholas Clark <nick@ccl4.org> | 2007-04-21 19:05:08 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-04-21 19:05:08 +0000 |
commit | 651b5b28673befa3f36a39b00591c15d5b30cca2 (patch) | |
tree | a0b972c92157745dc69c47556215c9c238d1c9b7 /intrpvar.h | |
parent | 9f7da6d537556dbe72c14a7f3fb5896e5591eace (diff) | |
download | perl-651b5b28673befa3f36a39b00591c15d5b30cca2.tar.gz |
Several members of struct yy_parser can go on a diet. Some I32s were
actually only holding chars.
p4raw-id: //depot/perl@31015
Diffstat (limited to 'intrpvar.h')
-rw-r--r-- | intrpvar.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/intrpvar.h b/intrpvar.h index 781de8f70e..12a9084dd7 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -285,7 +285,7 @@ PERLVARI(Icshname, const char *, CSH) PERLVARI(Icshlen, I32, 0) #endif -PERLVAR(Ilex_state, U32) /* next token is determined */ +PERLVAR(Ilex_state, U8) /* next token is determined */ /* What we know when we're in LEX_KNOWNEXT state. */ #ifdef PERL_MAD @@ -302,7 +302,7 @@ PERLVAR(Ibufptr, char *) PERLVAR(Ioldbufptr, char *) PERLVAR(Ioldoldbufptr, char *) PERLVAR(Ibufend, char *) -PERLVARI(Iexpect,int, XSTATE) /* how to interpret ambiguous tokens */ +PERLVARI(Iexpect, U8, XSTATE) /* how to interpret ambiguous tokens */ PERLVAR(Imulti_end, I32) /* last line of multi-line string */ |