diff options
author | Nicholas Clark <nick@ccl4.org> | 2007-01-15 18:15:54 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-01-15 18:15:54 +0000 |
commit | 17ab79462074d95168fb4cd137197d4e6a0696b2 (patch) | |
tree | 2b9c460eeae6816d88242966d344199dcf097747 /mathoms.c | |
parent | cde874cac37ec0b08192df9c6fec992f97b30566 (diff) | |
download | perl-17ab79462074d95168fb4cd137197d4e6a0696b2.tar.gz |
pp_rv2av and pp_rv2hv have a lot of common code, so it's certainly a
space saving to merge them. Hopefully this will reduce L2 cache misses.
p4raw-id: //depot/perl@29836
Diffstat (limited to 'mathoms.c')
-rw-r--r-- | mathoms.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1117,6 +1117,11 @@ PP(pp_bit_xor) return pp_bit_or(); } +PP(pp_rv2hv) +{ + return Perl_pp_rv2av(aTHX); +} + U8 * Perl_uvuni_to_utf8(pTHX_ U8 *d, UV uv) { |