diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-08-21 04:30:54 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-08-21 04:30:54 +0000 |
commit | ca337316984db69ef8c629fa7228a5d8e486f363 (patch) | |
tree | 6c35bbbf307e2e13e22170f9e4677e6f8487f7a7 /bytecode.pl | |
parent | 75d1b5dfc310050618a644104f03818db57b4915 (diff) | |
download | perl-ca337316984db69ef8c629fa7228a5d8e486f363.tar.gz |
Byteloader patching from Enache continues;
PADOFFSET handling was wrong.
p4raw-id: //depot/perl@20792
Diffstat (limited to 'bytecode.pl')
-rw-r--r-- | bytecode.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bytecode.pl b/bytecode.pl index e3104af731..73accabc39 100644 --- a/bytecode.pl +++ b/bytecode.pl @@ -4,7 +4,7 @@ BEGIN { } use strict; my %alias_to = ( - U32 => [qw(PADOFFSET STRLEN line_t)], + U32 => [qw(STRLEN line_t)], I32 => [qw(SSize_t long)], U16 => [qw(OPCODE short)], U8 => [qw(char)], |