From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 10166 invoked by alias); 4 Feb 2004 14:53:36 -0000 Mailing-List: contact gcc-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-owner@gcc.gnu.org Received: (qmail 10113 invoked from network); 4 Feb 2004 14:53:33 -0000 Received: from unknown (HELO nile.gnat.com) (205.232.38.5) by sources.redhat.com with SMTP; 4 Feb 2004 14:53:33 -0000 Received: from localhost (localhost [127.0.0.1]) by nile.gnat.com (Postfix) with ESMTP id 1584EF2F4A; Wed, 4 Feb 2004 09:53:33 -0500 (EST) Received: from nile.gnat.com ([127.0.0.1]) by localhost (nile.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 19517-01-5; Wed, 4 Feb 2004 09:53:32 -0500 (EST) Received: from gnat.com (hoosic.gnat.com [205.232.38.102]) by nile.gnat.com (Postfix) with ESMTP id 979A5F2F3F; Wed, 4 Feb 2004 09:53:32 -0500 (EST) Message-ID: <40210726.5060509@gnat.com> Date: Wed, 04 Feb 2004 14:53:00 -0000 From: Robert Dewar User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.6) Gecko/20040113 MIME-Version: 1.0 To: Andrew Pinski Cc: "S. Bosscher" , "'paolo.bonzini@polimi.it '" , "'gcc@gcc.gnu.org '" , "'kenner@vlsi1.ultra.nyu.edu '" , Michael Matz Subject: Re: What to remove after tree-ssa is merged? References: <4195D82C2DB1D211B9910008C7C9B06F01F3741E@lr0nt3.lr.tudelft.nl> <4020FF45.9030103@gnat.com> In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at nile.gnat.com X-SW-Source: 2004-02/txt/msg00255.txt.bz2 Andrew Pinski wrote: > Should really PLACEHOLDER_EXPR be done in the front-end > and be expanded to what it really does in gimplify stage > which every other language needs to do with its language > specific trees. I don't think there is any clean translation here. Remember that we tried this route energetically early on in Ada days and failed, that is why PLACEHOLDER_EXPR was created to do this task. We really don't want that severe a mismatch between the front end types and the back end types, a mismatch of that level causes a lot of grief. I am sure Richard can add more useful details here.