Change 19980 by [EMAIL PROTECTED] on 2003/07/04 08:40:51
line_t is U32, not I32.
Affected files ...
... //depot/perl/bytecode.pl#47 edit
Differences ...
==== //depot/perl/bytecode.pl#47 (text) ====
Index: perl/bytecode.pl
--- perl/bytecode.pl#46~19934~ Wed Jul 2 12:39:11 2003
+++ perl/bytecode.pl Fri Jul 4 01:40:51 2003
@@ -4,10 +4,10 @@
}
use strict;
my %alias_to = (
- U32 => [qw(PADOFFSET STRLEN)],
- I32 => [qw(SSize_t line_t long)],
+ U32 => [qw(PADOFFSET STRLEN line_t)],
+ I32 => [qw(SSize_t long)],
U16 => [qw(OPCODE short)],
- U8 => [qw(char)],
+ U8 => [qw(char)],
);
my @optype= qw(OP UNOP BINOP LOGOP LISTOP PMOP SVOP PADOP PVOP LOOP COP);
End of Patch.