From: Jarkko Hietaniemi Date: Fri, 4 Jul 2003 08:40:51 +0000 (+0000) Subject: line_t is U32, not I32. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=d5e9ef99e58bef05952c3b4469da723a74bed8f1;p=p5sagit%2Fp5-mst-13.2.git line_t is U32, not I32. p4raw-id: //depot/perl@19980 --- diff --git a/bytecode.pl b/bytecode.pl index e544485..0fd0362 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);