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 /pp.h | |
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 'pp.h')
-rw-r--r-- | pp.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -376,6 +376,7 @@ Does not use C<TARG>. See also C<XPUSHu>, C<mPUSHu> and C<PUSHu>. #define RETSETYES RETURNX(SETs(&PL_sv_yes)) #define RETSETNO RETURNX(SETs(&PL_sv_no)) #define RETSETUNDEF RETURNX(SETs(&PL_sv_undef)) +#define RETSETTARG STMT_START { SETTARG; RETURN; } STMT_END #define ARGTARG PL_op->op_targ |