summaryrefslogtreecommitdiff
path: root/opcode.pl
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.pl
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.pl')
-rwxr-xr-xopcode.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/opcode.pl b/opcode.pl
index 61ab824d24..3316fd9a9f 100755
--- a/opcode.pl
+++ b/opcode.pl
@@ -83,6 +83,7 @@ my @raw_alias = (
Perl_pp_oct => ['hex'],
Perl_pp_shift => ['pop'],
Perl_pp_sin => [qw(cos exp log sqrt)],
+ Perl_pp_bit_or => ['bit_xor'],
);
while (my ($func, $names) = splice @raw_alias, 0, 2) {