From 7b9b9e329ab71b0a6f076aa2e0bfba2d0e8461d6 Mon Sep 17 00:00:00 2001 From: "Paul \"LeoNerd\" Evans" Date: Sun, 27 Oct 2019 17:50:39 +0000 Subject: Inline the SvGETMAGIC call directly rather than via the macro --- inline.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'inline.h') diff --git a/inline.h b/inline.h index e4688320e9..56397310cc 100644 --- a/inline.h +++ b/inline.h @@ -199,7 +199,8 @@ PERL_STATIC_INLINE bool Perl_SvTRUE(pTHX_ SV *sv) { if (!LIKELY(sv)) return FALSE; - return SvTRUE_NN(sv); + SvGETMAGIC(sv); + return SvTRUE_nomg_NN(sv); } PERL_STATIC_INLINE SV * -- cgit v1.2.1