diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-02-07 14:57:36 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-02-07 14:57:36 +0000 |
commit | 789b4bc932459a2b438f46d8892d9c12f1afe8a1 (patch) | |
tree | 373d544af7955adf888b52b6225806a571ba4555 /opcode.pl | |
parent | 299476e067e522a02a8665fc1b3cd7f58f408de0 (diff) | |
download | perl-789b4bc932459a2b438f46d8892d9c12f1afe8a1.tar.gz |
pp_pop can be implemented by pp_shift.
p4raw-id: //depot/perl@27121
Diffstat (limited to 'opcode.pl')
-rwxr-xr-x | opcode.pl | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -81,6 +81,7 @@ my @raw_alias = ( Perl_pp_print => ['say'], Perl_pp_index => ['rindex'], Perl_pp_oct => ['hex'], + Perl_pp_shift => ['pop'], ); while (my ($func, $names) = splice @raw_alias, 0, 2) { |