From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26422 invoked by alias); 19 Mar 2004 20:08:06 -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 26347 invoked from network); 19 Mar 2004 20:08:03 -0000 Received: from unknown (HELO vlsi1.ultra.nyu.edu) (128.122.140.213) by sources.redhat.com with SMTP; 19 Mar 2004 20:08:03 -0000 Received: by vlsi1.ultra.nyu.edu (4.1/1.34) id AA27547; Fri, 19 Mar 04 15:11:28 EST Date: Fri, 19 Mar 2004 22:06:00 -0000 From: kenner@vlsi1.ultra.nyu.edu (Richard Kenner) Message-Id: <10403192011.AA27547@vlsi1.ultra.nyu.edu> To: rth@redhat.com Subject: Re: Marking variable as addressable from within SSA pass Cc: gcc@gcc.gnu.org X-SW-Source: 2004-03/txt/msg01169.txt.bz2 You do not want to do this. Addressing variables SEVERELY pessimizes the code. Use a VIEW_CONVERT_EXPR to change the type instead. Amusing that this tree code, originally viewed as Ada-specific, will find another use!