From 538573f733f1f6e6430074c1bcabb095b33cf3c4 Mon Sep 17 00:00:00 2001 From: Gurusamy Sarathy Date: Mon, 24 May 1999 04:23:10 +0000 Subject: [PATCH] straighten some code to avoid NeXT compiler bugs (from Geoff Kuenning ) p4raw-id: //depot/perl@3452 --- pp_ctl.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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) -- 1.8.3.1