Remove duplicate assignment to PL_eval_root in Perl_create_eval_scope
authorNicholas Clark <nick@ccl4.org>
Mon, 22 Jan 2007 19:21:21 +0000 (19:21 +0000)
committerNicholas Clark <nick@ccl4.org>
Mon, 22 Jan 2007 19:21:21 +0000 (19:21 +0000)
p4raw-id: //depot/perl@29921

pp_ctl.c

index b439c3e..10e3370 100644 (file)
--- a/pp_ctl.c
+++ b/pp_ctl.c
@@ -3615,7 +3615,6 @@ Perl_create_eval_scope(pTHX_ U32 flags)
 
     PUSHBLOCK(cx, (CXt_EVAL|CXp_TRYBLOCK), PL_stack_sp);
     PUSHEVAL(cx, 0, 0);
-    PL_eval_root = PL_op;      /* Only needed so that goto works right. */
 
     PL_in_eval = EVAL_INEVAL;
     if (flags & G_KEEPERR)