summaryrefslogtreecommitdiff
path: root/op.c
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2015-01-07 09:44:22 -0800
committerFather Chrysostomos <sprout@cpan.org>2015-01-07 09:51:00 -0800
commit82e2da1e1c59d01913b3af8f90692f5ba28bff9d (patch)
treef469f57f28c9d738b8ae44e4ecc6616fdd1e2222 /op.c
parented0cac5b003824d9b42c00752f4f894700e967d4 (diff)
downloadperl-82e2da1e1c59d01913b3af8f90692f5ba28bff9d.tar.gz
op.c: S_maybe_targlex needs no dVAR
I thought it would be needed for PL_opargs, but PL_opargs is truly global, even with PERL_GLOBAL_STRUCT.
Diffstat (limited to 'op.c')
-rw-r--r--op.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/op.c b/op.c
index 51b0bf09c4..9e5e926097 100644
--- a/op.c
+++ b/op.c
@@ -10442,7 +10442,6 @@ Perl_ck_smartmatch(pTHX_ OP *o)
static OP *
S_maybe_targlex(pTHX_ OP *o)
{
- dVAR;
OP * const kid = cLISTOPo->op_first;
/* has a disposable target? */
if ((PL_opargs[kid->op_type] & OA_TARGLEX)