From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22692 invoked by alias); 4 Jun 2004 15:24:40 -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 22524 invoked from network); 4 Jun 2004 15:24:26 -0000 Received: from unknown (HELO zcsmtp.zilog.com) (216.103.121.17) by sourceware.org with SMTP; 4 Jun 2004 15:24:26 -0000 Received: by ZCSMTP with Internet Mail Service (5.5.2657.72) id ; Fri, 4 Jun 2004 08:26:49 -0700 Message-ID: <2D76CE3268EAD511A75300B0D049B840C56DFC@zmail.zilog.com> From: Gyle Yearsley To: 'Richard Sandiford' Cc: "'gcc@gcc.gnu.org'" Subject: RE: Porting GCC Date: Fri, 04 Jun 2004 15:24:00 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-SW-Source: 2004-06/txt/msg00244.txt.bz2 Thanks Richard, I will check that. Gyle -----Original Message----- From: Richard Sandiford [mailto:rsandifo@redhat.com] Sent: Thursday, June 03, 2004 9:38 AM To: Gyle Yearsley Cc: 'gcc@gcc.gnu.org' Subject: Re: Porting GCC Gyle Yearsley writes: >> (insn 15 13 16 (nil) (set (mem/f:SI (pre_dec:SI (reg/f:SI 16 sp)) [0 S4 >> A8]) >> (mem/f:SI (plus:SI (reg/f:SI 18 virtual-stack-vars) >> (const_int -20 [0xffffffec])) [0 e+0 S4 A32])) -1 (nil) >> (nil)) >> >> >> (define_insn "pushsi" >> [(set:SI (mem:SI (pre_dec:SI (reg:SI 16))) >> (match_operand:SI 0 "general_operand" "r,m"))] >> "" >> "@ >> push.q %0 >> push.q %0" >> ) One thing to check is that GO_IF_LEGITIMATE_ADDRESS accepts: (plus:SI (reg/f:SI 18 virtual-stack-vars) (const_int -20 [0xffffffec])) as a valid address for SImode. Richard