From: Gurusamy Sarathy Date: Mon, 24 May 1999 04:23:10 +0000 (+0000) Subject: straighten some code to avoid NeXT compiler bugs (from X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=538573f733f1f6e6430074c1bcabb095b33cf3c4;p=p5sagit%2Fp5-mst-13.2.git straighten some code to avoid NeXT compiler bugs (from Geoff Kuenning ) p4raw-id: //depot/perl@3452 --- diff --git a/pp_ctl.c b/pp_ctl.c index a61060a..49db741 100644 --- a/pp_ctl.c +++ b/pp_ctl.c @@ -1026,7 +1026,10 @@ PP(pp_range) { if (GIMME == G_ARRAY) return cCONDOP->op_true; - return SvTRUEx(PAD_SV(PL_op->op_targ)) ? cCONDOP->op_false : cCONDOP->op_true; + if (SvTRUEx(PAD_SV(PL_op->op_targ))) + return cCONDOP->op_false; + else + return cCONDOP->op_true; } PP(pp_flip)