diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-02-07 18:01:26 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-02-07 18:01:26 +0000 |
commit | 3658c1f1e67f531ad4ee20e8c748aec14b993c44 (patch) | |
tree | 32b3f67e0e63185b74168c07ec6bac15029030db /mathoms.c | |
parent | d4ac975eac140a6fda54f99664f15120fd97e7be (diff) | |
download | perl-3658c1f1e67f531ad4ee20e8c748aec14b993c44.tar.gz |
Merging pp_bit_or and pp_bit_xor shrinks the object code by about .7K.
The overloading tests are not free.
p4raw-id: //depot/perl@27126
Diffstat (limited to 'mathoms.c')
-rw-r--r-- | mathoms.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1074,6 +1074,11 @@ PP(pp_sqrt) return pp_sin(); } +PP(pp_bit_xor) +{ + return pp_bit_or(); +} + U8 * Perl_uvuni_to_utf8(pTHX_ U8 *d, UV uv) { |