summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2014-11-02 21:34:23 -0800
committerFather Chrysostomos <sprout@cpan.org>2014-11-13 04:49:41 -0800
commita642da7263dec18aa73cc82297c22867e050a28c (patch)
treea19e53f533ed0fd3f4219b49387e1b79403caf78 /proto.h
parentd0a32af375ac806258a97cce0091ce4b3636f8dc (diff)
downloadperl-a642da7263dec18aa73cc82297c22867e050a28c.tar.gz
First arg to op_const_sv is never null
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/proto.h b/proto.h
index c88bd0a640..19c7d292bc 100644
--- a/proto.h
+++ b/proto.h
@@ -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);