summaryrefslogtreecommitdiff
path: root/opcode.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2005-10-31 15:52:50 +0000
committerNicholas Clark <nick@ccl4.org>2005-10-31 15:52:50 +0000
commit1d5774de323ac43a91c2a30cf2e40384e4754f98 (patch)
treee62b70709d532d61e9ba14338604930519ad027a /opcode.h
parent609700aa10bcdb000422f710ddafea2d63c0c0b9 (diff)
downloadperl-1d5774de323ac43a91c2a30cf2e40384e4754f98.tar.gz
It appears that it's trivially easy to alias opcode functions in
the opcode table. We should be able to get both a speed and size saving here. Time will tell how much. p4raw-id: //depot/perl@25929
Diffstat (limited to 'opcode.h')
-rw-r--r--opcode.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/opcode.h b/opcode.h
index e7af19b866..d52088a7cb 100644
--- a/opcode.h
+++ b/opcode.h
@@ -894,8 +894,8 @@ EXT Perl_ppaddr_t PL_ppaddr[] /* or perlvars.h */
MEMBER_TO_FPTR(Perl_pp_aelem),
MEMBER_TO_FPTR(Perl_pp_aslice),
MEMBER_TO_FPTR(Perl_pp_each),
- MEMBER_TO_FPTR(Perl_pp_values),
- MEMBER_TO_FPTR(Perl_pp_keys),
+ MEMBER_TO_FPTR(Perl_do_kv),
+ MEMBER_TO_FPTR(Perl_do_kv),
MEMBER_TO_FPTR(Perl_pp_delete),
MEMBER_TO_FPTR(Perl_pp_exists),
MEMBER_TO_FPTR(Perl_pp_rv2hv),