diff options
author | Father Chrysostomos <sprout@cpan.org> | 2014-11-08 12:38:32 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2014-11-08 16:06:43 -0800 |
commit | 2eb514137a5f9f0f3b2e488949ceb974a7cbe2fe (patch) | |
tree | e016d32c09db0e564441f07352881334a49f15c7 /opcode.h | |
parent | aafd37e70de747bdeaa820466cb60c553c54882e (diff) | |
download | perl-2eb514137a5f9f0f3b2e488949ceb974a7cbe2fe.tar.gz |
Remove OA_DANGEROUS from die
OA_DANGEROUS indicates that temporary copies may need to be made in
list assignment, to handle things like:
($a, $b) = ($b, $a);
In other words, an op type is flagged with OA_DANGEROUS if its return
values could occur elsewhere on the stack.
die never returns, so it shouldn’t necessitate temp copies.
Diffstat (limited to 'opcode.h')
-rw-r--r-- | opcode.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1921,7 +1921,7 @@ EXTCONST U32 PL_opargs[] = { 0x00000100, /* leavesublv */ 0x00009b08, /* caller */ 0x0000240d, /* warn */ - 0x0000244d, /* die */ + 0x0000240d, /* die */ 0x00009b04, /* reset */ 0x00000400, /* lineseq */ 0x00000a04, /* nextstate */ |