summaryrefslogtreecommitdiff
path: root/regen/opcode.pl
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2015-01-03 18:50:35 -0800
committerFather Chrysostomos <sprout@cpan.org>2015-01-31 22:03:50 -0800
commit5d01050abccabc9ab4309d80d4b603d68575e0a8 (patch)
treecfb8704e39b55834345de342d99972ce1ea26d52 /regen/opcode.pl
parent7dd648412d5aa4efd8fb68cc6d58d99d867af2a2 (diff)
downloadperl-5d01050abccabc9ab4309d80d4b603d68575e0a8.tar.gz
Add string- and number-specific bitop types
and also implement the pp functions, though nothing compiles to these ops yet.
Diffstat (limited to 'regen/opcode.pl')
-rwxr-xr-xregen/opcode.pl2
1 files changed, 2 insertions, 0 deletions
diff --git a/regen/opcode.pl b/regen/opcode.pl
index 327e45eda1..765816fd50 100755
--- a/regen/opcode.pl
+++ b/regen/opcode.pl
@@ -122,6 +122,8 @@ my @raw_alias = (
Perl_pp_shift => ['pop'],
Perl_pp_sin => [qw(cos exp log sqrt)],
Perl_pp_bit_or => ['bit_xor'],
+ Perl_pp_nbit_or => ['nbit_xor'],
+ Perl_pp_sbit_or => ['sbit_xor'],
Perl_pp_rv2av => ['rv2hv'],
Perl_pp_akeys => ['avalues'],
Perl_pp_rkeys => [qw(rvalues reach)],