summaryrefslogtreecommitdiff
path: root/opcode.h
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2014-11-08 12:38:32 -0800
committerFather Chrysostomos <sprout@cpan.org>2014-11-08 16:06:43 -0800
commit2eb514137a5f9f0f3b2e488949ceb974a7cbe2fe (patch)
treee016d32c09db0e564441f07352881334a49f15c7 /opcode.h
parentaafd37e70de747bdeaa820466cb60c553c54882e (diff)
downloadperl-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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/opcode.h b/opcode.h
index 3e4befe0d9..dad3316ecb 100644
--- a/opcode.h
+++ b/opcode.h
@@ -1921,7 +1921,7 @@ EXTCONST U32 PL_opargs[] = {
0x00000100, /* leavesublv */
0x00009b08, /* caller */
0x0000240d, /* warn */
- 0x0000244d, /* die */
+ 0x0000240d, /* die */
0x00009b04, /* reset */
0x00000400, /* lineseq */
0x00000a04, /* nextstate */