From 1a67a97c0300941ac67bfb1dd421467b8c59e21c Mon Sep 17 00:00:00 2001 From: Stephen McCamant Date: Fri, 25 Jun 1999 08:38:44 -0500 Subject: Eliminate CONDOPs Message-ID: <14193.25034.113373.245377@alias-2.pr.mcs.net> p4raw-id: //depot/perl@3637 --- pp_hot.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pp_hot.c') diff --git a/pp_hot.c b/pp_hot.c index f5ba85aa6e..f4ed17129c 100644 --- a/pp_hot.c +++ b/pp_hot.c @@ -142,9 +142,9 @@ PP(pp_cond_expr) { djSP; if (SvTRUEx(POPs)) - RETURNOP(cCONDOP->op_true); + RETURNOP(cLOGOP->op_other); else - RETURNOP(cCONDOP->op_false); + RETURNOP(cLOGOP->op_next); } PP(pp_unstack) -- cgit v1.2.1