projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
e52fd6f
)
dorassign doesn't need --SP;
Nicholas Clark [Sat, 5 Nov 2005 08:32:39 +0000 (08:32 +0000)]
p4raw-id: //depot/perl@26010
pp_hot.c
patch
|
blob
|
blame
|
history
diff --git
a/pp_hot.c
b/pp_hot.c
index
2a08525
..
7b80467
100644
(file)
--- a/
pp_hot.c
+++ b/
pp_hot.c
@@
-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) {