summaryrefslogtreecommitdiff
path: root/regcomp.c
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2016-02-27 13:54:51 -0700
committerKarl Williamson <khw@cpan.org>2016-02-27 18:08:36 -0700
commite7d603c00cb813983ddd3206655540d997d10e29 (patch)
tree2f5b0e525d7d286401202d32de7e089ac411050a /regcomp.c
parentacb2202e0b234a5f6166a7379a38128ab1e049e5 (diff)
downloadperl-e7d603c00cb813983ddd3206655540d997d10e29.tar.gz
regcomp.c: Add new static inline convenience function
Diffstat (limited to 'regcomp.c')
-rw-r--r--regcomp.c14
1 files changed, 12 insertions, 2 deletions
diff --git a/regcomp.c b/regcomp.c
index b5d4932d90..beff554f4e 100644
--- a/regcomp.c
+++ b/regcomp.c
@@ -8442,6 +8442,17 @@ S_invlist_trim(SV* invlist)
}
}
+PERL_STATIC_INLINE void
+S_invlist_clear(pTHX_ SV* invlist) /* Empty the inversion list */
+{
+ PERL_ARGS_ASSERT_INVLIST_CLEAR;
+
+ assert(SvTYPE(invlist) == SVt_INVLIST);
+
+ invlist_set_len(invlist, 0, 0);
+ invlist_trim(invlist);
+}
+
#endif /* ifndef PERL_IN_XSUB_RE */
PERL_STATIC_INLINE bool
@@ -9357,8 +9368,7 @@ Perl__invlist_intersection_maybe_complement_2nd(pTHX_ SV* const a, SV* const b,
invlist_replace_list_destroys_src(*i, r);
}
else {
- invlist_set_len(*i, 0, 0);
- invlist_trim(*i);
+ invlist_clear(*i);
}
SvREFCNT_dec_NN(r);
}