diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-03-04 19:59:20 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-03-04 19:59:20 +0000 |
commit | b84c11c86f265d1fdce77009906ee8b6bad88f6c (patch) | |
tree | 17b4806a09e03f675685f6a522ef463d76415350 /toke.c | |
parent | 1dcb720a51504d7b20fb1eac689c4efad1376736 (diff) | |
download | perl-b84c11c86f265d1fdce77009906ee8b6bad88f6c.tar.gz |
Three variables in S_scan_trans only hold flags for op_private, so can
be U8.
p4raw-id: //depot/perl@33437
Diffstat (limited to 'toke.c')
-rw-r--r-- | toke.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -11074,9 +11074,9 @@ S_scan_trans(pTHX_ char *start) register char* s; OP *o; short *tbl; - I32 squash; - I32 del; - I32 complement; + U8 squash; + U8 del; + U8 complement; #ifdef PERL_MAD char *modstart; #endif |