From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5447 invoked by alias); 7 Jun 2004 14:09:34 -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 5426 invoked from network); 7 Jun 2004 14:09:33 -0000 Received: from unknown (HELO main.gmane.org) (80.91.224.249) by sourceware.org with SMTP; 7 Jun 2004 14:09:33 -0000 Received: from list by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 1BXKoe-00047W-00 for ; Mon, 07 Jun 2004 16:09:32 +0200 Received: from paride.rett.polimi.it ([131.175.65.135]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 07 Jun 2004 16:09:32 +0200 Received: from bonzini by paride.rett.polimi.it with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 07 Jun 2004 16:09:32 +0200 To: gcc-patches@gcc.gnu.org From: Paolo Bonzini Subject: Re: Tree profilng merge 1 - allow inserting onto edge to EXIT_BLOCK Date: Mon, 07 Jun 2004 15:39:00 -0000 Message-ID: <40C477C7.3000102@gnu.org> References: <20040528105245.GI22699@kam.mff.cuni.cz> <20040606234550.GB24957@redhat.com> <1086615503.18174.5.camel@speedy> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@sea.gmane.org Cc: law@redhat.com X-Gmane-NNTP-Posting-Host: paride.rett.polimi.it User-Agent: Mozilla Thunderbird 0.5 (Windows/20040207) In-Reply-To: <1086615503.18174.5.camel@speedy> X-SW-Source: 2004-06/txt/msg00339.txt.bz2 Jeffrey A Law wrote: > Keep me informed -- how you do this has some implications for > Andrew's code (which I've taken review responsibility for) to > optimize stuff like > > if (cond) > return x; > else > return y; I planned to do this as part of a general rewrite of phiopt (see earlier message to the list in which I CCed you). Is Andrew rewriting this to if (cond) T = x; else T = y; return T; ? Paolo