diff options
author | David Mitchell <davem@iabyn.com> | 2015-12-30 12:33:48 +0000 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2016-02-03 09:19:20 +0000 |
commit | a73d8813ef7582a7040306de412d61e841271675 (patch) | |
tree | 2c07d21407a88f0c6c0a218658c0582287a2ebce /pp_sort.c | |
parent | ed8ff0f310e9159df865ecc2e1d316816e8cc11e (diff) | |
download | perl-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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); |