diff options
author | David Mitchell <davem@iabyn.com> | 2015-12-30 13:09:36 +0000 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2016-02-03 09:19:20 +0000 |
commit | 6a7d52ccb6c2daf79e90e6cb93bbc5f3d516509a (patch) | |
tree | 118e85f44600a59694d1bb574f4ee4d1ac028af8 /embed.fnc | |
parent | a73d8813ef7582a7040306de412d61e841271675 (diff) | |
download | perl-6a7d52ccb6c2daf79e90e6cb93bbc5f3d516509a.tar.gz |
convert CX_PUSHFORMAT/POPFORMAT to inline fns
Replace CX_PUSHFORMAT() with cx_pushformat() etc.
No functional changes.
Diffstat (limited to 'embed.fnc')
-rw-r--r-- | embed.fnc | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -2884,11 +2884,14 @@ ApM |void |leave_adjust_stacks|NN SV **from_sp|NN SV **to_sp \ AiM |PERL_CONTEXT * |cx_pushblock|U8 type|U8 gimme|NN SV** sp|I32 saveix AiM |void |cx_popblock|NN PERL_CONTEXT *cx AiM |void |cx_topblock|NN PERL_CONTEXT *cx -AiM |void |cx_pushsub |NN PERL_CONTEXT *cx|NN CV *cv|NULLOK OP *retop \ - |bool hasargs +AiM |void |cx_pushsub |NN PERL_CONTEXT *cx|NN CV *cv \ + |NULLOK OP *retop|bool hasargs AiM |void |cx_popsub_common|NN PERL_CONTEXT *cx AiM |void |cx_popsub_args |NN PERL_CONTEXT *cx AiM |void |cx_popsub |NN PERL_CONTEXT *cx +AiM |void |cx_pushformat |NN PERL_CONTEXT *cx|NN CV *cv \ + |NULLOK OP *retop|NULLOK GV *gv +AiM |void |cx_popformat |NN PERL_CONTEXT *cx #endif : ex: set ts=8 sts=4 sw=4 noet: |