From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24373 invoked by alias); 14 Jun 2002 18:28:53 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 24340 invoked from network); 14 Jun 2002 18:28:51 -0000 Received: from unknown (HELO cygnus.com) (205.180.83.203) by sources.redhat.com with SMTP; 14 Jun 2002 18:28:51 -0000 Received: from romulus.sfbay.redhat.com (romulus.sfbay.redhat.com [172.16.27.251]) by runyon.cygnus.com (8.8.7-cygnus/8.8.7) with ESMTP id LAA09127; Fri, 14 Jun 2002 11:28:49 -0700 (PDT) Received: (from kev@localhost) by romulus.sfbay.redhat.com (8.11.6/8.11.6) id g5EISj824446; Fri, 14 Jun 2002 11:28:45 -0700 Date: Fri, 14 Jun 2002 11:28:00 -0000 From: Kevin Buettner Message-Id: <1020614182844.ZM24445@localhost.localdomain> In-Reply-To: Don Howard "[Patch] Another small memattr fix." (Jun 12, 4:33pm) References: To: Don Howard Subject: Re: [Patch] Another small memattr fix. Cc: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2002-06/txt/msg00243.txt.bz2 Don, Could you explain this change in more detail? > - if (lo >= hi) > + if (lo > hi-1) I.e, with the exception of the boundary conditions (max int, min int), aren't these two equivalent when lo and hi are integers? Kevin