From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21206 invoked by alias); 21 Sep 2004 21:59:30 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 21189 invoked from network); 21 Sep 2004 21:59:29 -0000 Received: from unknown (HELO mail-out3.apple.com) (17.254.13.22) by sourceware.org with SMTP; 21 Sep 2004 21:59:29 -0000 Received: from mailgate2.apple.com (a17-128-100-204.apple.com [17.128.100.204]) by mail-out3.apple.com (8.12.11/8.12.11) with ESMTP id i8LM2tLk013516 for ; Tue, 21 Sep 2004 15:02:55 -0700 (PDT) Received: from relay4.apple.com (relay4.apple.com) by mailgate2.apple.com (Content Technologies SMTPRS 4.3.14) with ESMTP id ; Tue, 21 Sep 2004 14:59:28 -0700 Received: from [17.201.26.144] (il0102b-dhcp94.apple.com [17.201.26.144]) by relay4.apple.com (8.12.11/8.12.11) with ESMTP id i8LLxQMk001618; Tue, 21 Sep 2004 14:59:27 -0700 (PDT) In-Reply-To: <20040921214329.GB32068@redhat.com> References: <498C85A6-0800-11D9-A562-000393A91CAA@apple.com> <20040921214329.GB32068@redhat.com> Mime-Version: 1.0 (Apple Message framework v669) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <80DC2B60-0C19-11D9-90E0-000393A91CAA@apple.com> Cc: GCC Patches Content-Transfer-Encoding: 7bit From: Devang Patel Subject: Re: [PATCH] AV - Use distance vector Date: Tue, 21 Sep 2004 22:17:00 -0000 To: Richard Henderson X-SW-Source: 2004-09/txt/msg02132.txt.bz2 On Sep 21, 2004, at 2:43 PM, Richard Henderson wrote: > On Thu, Sep 16, 2004 at 09:48:51AM -0700, Devang Patel wrote: >> + if (SUB_DISTANCE (subscript) == integer_zero_node) > > integer_zerop. ok > >> + else if (INT_CST_LT (vf, SUB_DISTANCE (subscript))) >> + { >> + dep_exists = false; >> + >> + if (TREE_INT_CST_LOW (vf) == TREE_INT_CST_LOW (SUB_DISTANCE >> (subscript)) >> + && TREE_INT_CST_HIGH (vf) == TREE_INT_CST_HIGH (SUB_DISTANCE >> (subscript))) > > Both can be done with one tree_int_cst_compare. ok - Devang