diff options
author | David Mitchell <davem@iabyn.com> | 2015-06-02 11:51:44 +0100 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2015-06-19 08:44:17 +0100 |
commit | e1a10f35503e6758601f1a5c97682620c4644bc8 (patch) | |
tree | d22ca05f94079c48fd1a5d11eb3189d0b69e96f5 /deb.c | |
parent | a8fc6464d21b7e1fc056ca7bd504ada3f88770d7 (diff) | |
download | perl-e1a10f35503e6758601f1a5c97682620c4644bc8.tar.gz |
add PERLSI_MULTICALL
Currently when MULTICALL pushes a new stackinfo, it uses the si_type
PERLSI_SORT. This is probably just a hangover from when the MULTICALL code
was created from similar code used to implement sort.
Change it to use the new PERLSI_MULTICALL si_type.
The si_type value is mainly used for debugging/dumping purposes,
apart from a few places where we check for whether this is
the top stack (PERLSI_MAIN); or check for a sort BLOCK (cxix = 0,
CXt_NULL, PERLSI_SORT).
So this commit should have no immediate effect. It will in future
however allow us to detect whether we have a sort or a true MULTICALL.
Diffstat (limited to 'deb.c')
-rw-r--r-- | deb.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -192,6 +192,7 @@ static const char * const si_names[] = { "WARNHOOK", "DIEHOOK", "REQUIRE" + "MULTICALL" }; #endif |