summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2011-06-23 06:16:12 -0700
committerFather Chrysostomos <sprout@cpan.org>2011-06-23 10:23:44 -0700
commitbf1857d8fffd6739904f9f8dfa5e615f46485383 (patch)
treeb4a7ef0f3124471478e3d5f5051335a96c9da4d6
parentceb7f800743f9d0c3a2ed97d06aca722aab3c8b5 (diff)
downloadperl-bf1857d8fffd6739904f9f8dfa5e615f46485383.tar.gz
Remove now-redundant check from pp_ctl.c:S_return_lvalues
This has been redundant since commit d25b0d7.
-rw-r--r--pp_ctl.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/pp_ctl.c b/pp_ctl.c
index 8e53116ee2..9ef18b091c 100644
--- a/pp_ctl.c
+++ b/pp_ctl.c
@@ -2282,7 +2282,6 @@ S_return_lvalues(pTHX_ SV **mark, SV **sp, SV **newsp, I32 gimme,
}
else
*++newsp =
- (!CxLVAL(cx) || CxLVAL(cx) & OPpENTERSUB_INARGS) &&
!SvTEMP(*SP)
? sv_2mortal(SvREFCNT_inc_simple_NN(*SP))
: *SP;