diff options
author | Father Chrysostomos <sprout@cpan.org> | 2014-11-02 21:34:23 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2014-11-13 04:49:41 -0800 |
commit | a642da7263dec18aa73cc82297c22867e050a28c (patch) | |
tree | a19e53f533ed0fd3f4219b49387e1b79403caf78 /proto.h | |
parent | d0a32af375ac806258a97cce0091ce4b3636f8dc (diff) | |
download | perl-a642da7263dec18aa73cc82297c22867e050a28c.tar.gz |
First arg to op_const_sv is never null
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -3197,7 +3197,10 @@ PERL_CALLCONV void Perl_op_clear(pTHX_ OP* o) assert(o) PERL_CALLCONV SV* Perl_op_const_sv(pTHX_ const OP* o, CV* cv, CV *outside) - __attribute__warn_unused_result__; + __attribute__warn_unused_result__ + __attribute__nonnull__(pTHX_1); +#define PERL_ARGS_ASSERT_OP_CONST_SV \ + assert(o) PERL_CALLCONV OP* Perl_op_contextualize(pTHX_ OP* o, I32 context) __attribute__nonnull__(pTHX_1); |