diff options
author | Father Chrysostomos <sprout@cpan.org> | 2015-01-03 18:50:35 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2015-01-31 22:03:50 -0800 |
commit | 5d01050abccabc9ab4309d80d4b603d68575e0a8 (patch) | |
tree | cfb8704e39b55834345de342d99972ce1ea26d52 /ext/Opcode/Opcode.pm | |
parent | 7dd648412d5aa4efd8fb68cc6d58d99d867af2a2 (diff) | |
download | perl-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 'ext/Opcode/Opcode.pm')
-rw-r--r-- | ext/Opcode/Opcode.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ext/Opcode/Opcode.pm b/ext/Opcode/Opcode.pm index 925b4ab438..c9a3f15f47 100644 --- a/ext/Opcode/Opcode.pm +++ b/ext/Opcode/Opcode.pm @@ -318,8 +318,9 @@ invert_opset function. postdec i_postdec int hex oct abs pow multiply i_multiply divide i_divide modulo i_modulo add i_add subtract i_subtract - left_shift right_shift bit_and bit_xor bit_or negate i_negate - not complement + left_shift right_shift bit_and bit_xor bit_or nbit_and + nbit_xor nbit_or sbit_and sbit_xor sbit_or negate i_negate not + complement ncomplement scomplement lt i_lt gt i_gt le i_le ge i_ge eq i_eq ne i_ne ncmp i_ncmp slt sgt sle sge seq sne scmp |