summaryrefslogtreecommitdiff
path: root/pp_sort.c
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2015-12-30 12:33:48 +0000
committerDavid Mitchell <davem@iabyn.com>2016-02-03 09:19:20 +0000
commita73d8813ef7582a7040306de412d61e841271675 (patch)
tree2c07d21407a88f0c6c0a218658c0582287a2ebce /pp_sort.c
parented8ff0f310e9159df865ecc2e1d316816e8cc11e (diff)
downloadperl-a73d8813ef7582a7040306de412d61e841271675.tar.gz
convert CX_PUSHSUB/POPSUB to inline fns
Replace CX_PUSHSUB() with cx_pushsub() etc. No functional changes.
Diffstat (limited to 'pp_sort.c')
-rw-r--r--pp_sort.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pp_sort.c b/pp_sort.c
index 66b4b448c2..13bcf9f07d 100644
--- a/pp_sort.c
+++ b/pp_sort.c
@@ -1671,7 +1671,7 @@ PP(pp_sort)
cx = cx_pushblock(CXt_NULL, gimme, PL_stack_base, old_savestack_ix);
if (!(flags & OPf_SPECIAL)) {
cx->cx_type = CXt_SUB|CXp_MULTICALL;
- CX_PUSHSUB(cx, cv, NULL, hasargs);
+ cx_pushsub(cx, cv, NULL, hasargs);
if (!is_xsub) {
PADLIST * const padlist = CvPADLIST(cv);
@@ -1703,7 +1703,7 @@ PP(pp_sort)
CX_LEAVE_SCOPE(cx);
if (!(flags & OPf_SPECIAL)) {
assert(CxTYPE(cx) == CXt_SUB);
- CX_POPSUB(cx);
+ cx_popsub(cx);
}
else
assert(CxTYPE(cx) == CXt_NULL);