summaryrefslogtreecommitdiff
path: root/bytecode.pl
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2003-07-04 08:40:51 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2003-07-04 08:40:51 +0000
commitd5e9ef99e58bef05952c3b4469da723a74bed8f1 (patch)
tree38307ccf908b16d64c810f869883413b4349594d /bytecode.pl
parentb089116590f5bd8ca52e6ccd2a029c8fc0abb2ae (diff)
downloadperl-d5e9ef99e58bef05952c3b4469da723a74bed8f1.tar.gz
line_t is U32, not I32.
p4raw-id: //depot/perl@19980
Diffstat (limited to 'bytecode.pl')
-rw-r--r--bytecode.pl6
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);