From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8471 invoked by alias); 13 Mar 2003 22:34:24 -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 8428 invoked from network); 13 Mar 2003 22:34:23 -0000 Received: from unknown (HELO mx2.redhat.com) (12.150.115.133) by sources.redhat.com with SMTP; 13 Mar 2003 22:34:23 -0000 Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by mx2.redhat.com (8.11.6/8.11.6) with ESMTP id h2DMR2l06156; Thu, 13 Mar 2003 17:27:02 -0500 Received: from potter.sfbay.redhat.com (potter.sfbay.redhat.com [172.16.27.15]) by int-mx2.corp.redhat.com (8.11.6/8.11.6) with ESMTP id h2DMYMQ29277; Thu, 13 Mar 2003 17:34:22 -0500 Received: from dot.sfbay.redhat.com (dot.sfbay.redhat.com [172.16.24.7]) by potter.sfbay.redhat.com (8.11.6/8.11.6) with ESMTP id h2DMYL524657; Thu, 13 Mar 2003 14:34:21 -0800 Received: (from rth@localhost) by dot.sfbay.redhat.com (8.11.6/8.11.6) id h2DMW6m30926; Thu, 13 Mar 2003 14:32:06 -0800 X-Authentication-Warning: dot.sfbay.redhat.com: rth set sender to rth@redhat.com using -f Date: Thu, 13 Mar 2003 22:37:00 -0000 From: Richard Henderson To: Dale Johannesen Cc: David Edelsohn , gcc@gcc.gnu.org Subject: Re: store double-cvtd-to-int to memory Message-ID: <20030313223206.GH30854@redhat.com> Mail-Followup-To: Richard Henderson , Dale Johannesen , David Edelsohn , gcc@gcc.gnu.org References: <7C8B66E0-54F5-11D7-B9FE-000393D76DAA@apple.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <7C8B66E0-54F5-11D7-B9FE-000393D76DAA@apple.com> User-Agent: Mutt/1.4i X-SW-Source: 2003-03/txt/msg00864.txt.bz2 On Wed, Mar 12, 2003 at 05:45:36PM -0800, Dale Johannesen wrote: > [(set (match_operand:SI 0 "memory_operand" "=m") > (fix:SI (match_operand:DF 1 "gpc_reg_operand" "f"))) > (clobber (match_operand:DI 2 "gpc_reg_operand" "=f")) > (clobber (match_operand:DI 3 "memory_operand" "=o"))] > > where op3 is a stack temp. Do you actually need the stack temp? I understood you that you didn't need it, because you had an instruction for this directly. If not, just leave it out. r~