diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-07-04 08:40:51 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-07-04 08:40:51 +0000 |
commit | d5e9ef99e58bef05952c3b4469da723a74bed8f1 (patch) | |
tree | 38307ccf908b16d64c810f869883413b4349594d /bytecode.pl | |
parent | b089116590f5bd8ca52e6ccd2a029c8fc0abb2ae (diff) | |
download | perl-d5e9ef99e58bef05952c3b4469da723a74bed8f1.tar.gz |
line_t is U32, not I32.
p4raw-id: //depot/perl@19980
Diffstat (limited to 'bytecode.pl')
-rw-r--r-- | bytecode.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bytecode.pl b/bytecode.pl index e544485014..0fd036229c 100644 --- a/bytecode.pl +++ b/bytecode.pl @@ -4,10 +4,10 @@ BEGIN { } 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); |