summaryrefslogtreecommitdiff
path: root/opcode.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2006-02-07 18:01:26 +0000
committerNicholas Clark <nick@ccl4.org>2006-02-07 18:01:26 +0000
commit3658c1f1e67f531ad4ee20e8c748aec14b993c44 (patch)
tree32b3f67e0e63185b74168c07ec6bac15029030db /opcode.h
parentd4ac975eac140a6fda54f99664f15120fd97e7be (diff)
downloadperl-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 'opcode.h')
-rw-r--r--opcode.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/opcode.h b/opcode.h
index 849b7d2318..6dd31c3810 100644
--- a/opcode.h
+++ b/opcode.h
@@ -877,7 +877,7 @@ EXT Perl_ppaddr_t PL_ppaddr[] /* or perlvars.h */
MEMBER_TO_FPTR(Perl_pp_sne),
MEMBER_TO_FPTR(Perl_pp_scmp),
MEMBER_TO_FPTR(Perl_pp_bit_and),
- MEMBER_TO_FPTR(Perl_pp_bit_xor),
+ MEMBER_TO_FPTR(Perl_pp_bit_or), /* Perl_pp_bit_xor */
MEMBER_TO_FPTR(Perl_pp_bit_or),
MEMBER_TO_FPTR(Perl_pp_negate),
MEMBER_TO_FPTR(Perl_pp_i_negate),