summaryrefslogtreecommitdiff
path: root/opcode.pl
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2006-02-07 14:11:42 +0000
committerNicholas Clark <nick@ccl4.org>2006-02-07 14:11:42 +0000
commitdaa2adfd3a5f888cb1c60469c1ec42e215d455bb (patch)
treed15068adf2aec0e7155c303650249ced96348664 /opcode.pl
parent2723d2164bbb7a5d9949447f06dde05bf516db63 (diff)
downloadperl-daa2adfd3a5f888cb1c60469c1ec42e215d455bb.tar.gz
pp_hex can be implemented trivially by pp_oct, making pp_hex a mathom.
p4raw-id: //depot/perl@27119
Diffstat (limited to 'opcode.pl')
-rwxr-xr-xopcode.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/opcode.pl b/opcode.pl
index c548f7b257..b1c50b9883 100755
--- a/opcode.pl
+++ b/opcode.pl
@@ -80,6 +80,7 @@ my @raw_alias = (
Perl_pp_sle => [qw(slt sgt sge)],
Perl_pp_print => ['say'],
Perl_pp_index => ['rindex'],
+ Perl_pp_oct => ['hex'],
);
while (my ($func, $names) = splice @raw_alias, 0, 2) {