summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul "LeoNerd" Evans <leonerd@leonerd.org.uk>2021-02-09 18:29:15 +0000
committerPaul "LeoNerd" Evans <leonerd@leonerd.org.uk>2021-02-14 13:40:50 +0000
commitb086613286770c19d8327e3f4d9d58110a08c2c9 (patch)
tree24932913eebe0027ba1de8f8ff4d41ca63422359
parent383bf72f374cd3608e3ae2a186dd0c3a8d2fbf53 (diff)
downloadperl-b086613286770c19d8327e3f4d9d58110a08c2c9.tar.gz
OP_ENTERTRY no longer needs to handle OPf_SPECIAL flag
-rw-r--r--op.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/op.c b/op.c
index ae7c3209d8..594d4ee9c3 100644
--- a/op.c
+++ b/op.c
@@ -12805,15 +12805,12 @@ Perl_ck_eval(pTHX_ OP *o)
if (o->op_type == OP_ENTERTRY) {
LOGOP *enter;
- U8 flags = o->op_flags;
/* cut whole sibling chain free from o */
op_sibling_splice(o, NULL, -1, NULL);
op_free(o);
enter = alloc_LOGOP(OP_ENTERTRY, NULL, NULL);
- if(flags & OPf_SPECIAL)
- enter->op_flags |= OPf_SPECIAL;
/* establish postfix order */
enter->op_next = (OP*)enter;