Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 29 Jul 1998 03:06:46 GMT
From:      gfm@mira.net (Graham Menhennitt)
To:        freebsd-stable@FreeBSD.ORG
Subject:   Re: Optimizing breaks /bin/sh in 2.2.7-RELEASE
Message-ID:  <35be65fe.66621767@mira.net>
In-Reply-To: <19980728125957.A24837@caffeine.internal.enteract.com>
References:  <19980728125957.A24837@caffeine.internal.enteract.com>

next in thread | previous in thread | raw e-mail | index | archive | help
On Tue, 28 Jul 1998 12:59:57 -0500, "Kevin M. Dulzo"
<kdulzo@caffeine.internal.enteract.com> wrote:

> 	if (flags & EV_TESTED)
> 		evaltree(cmdentry.u.func, EV_TESTED);
> 	else
> 		evaltree(cmdentry.u.func, 0);

I know that this is not the slightlest bit relevant to you question
but this chunk of code is equivalent to the much simpler:

	evaltree(cmdentry.u.func, flags & EV_TESTED);

Graham

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-stable" in the body of the message



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?35be65fe.66621767>