diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-11-05 08:32:39 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-11-05 08:32:39 +0000 |
commit | 2bd49cfcbebe5157c802aba335cb6f76b1afa6fd (patch) | |
tree | fee0f53192c972d496848046c258bc06d07637a1 | |
parent | e52fd6f4ebd87d6146c934dfc974265434a96d9b (diff) | |
download | perl-2bd49cfcbebe5157c802aba335cb6f76b1afa6fd.tar.gz |
dorassign doesn't need --SP;
p4raw-id: //depot/perl@26010
-rw-r--r-- | pp_hot.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -336,7 +336,8 @@ PP(pp_defined) if(op_type == OP_DOR || op_type == OP_DORASSIGN) { sv = TOPs; if (!sv || !SvANY(sv)) { - --SP; + if (op_type == OP_DOR) + --SP; RETURNOP(cLOGOP->op_other); } } else if (op_type == OP_DEFINED) { |