From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23445 invoked by alias); 8 Feb 2002 04:33:44 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 23378 invoked from network); 8 Feb 2002 04:33:40 -0000 Received: from unknown (HELO cygnus.com) (205.180.230.5) by sources.redhat.com with SMTP; 8 Feb 2002 04:33:40 -0000 Received: from localhost.redhat.com (cse.cygnus.com [205.180.230.236]) by runyon.cygnus.com (8.8.7-cygnus/8.8.7) with ESMTP id UAA01368; Thu, 7 Feb 2002 20:33:33 -0800 (PST) Received: by localhost.redhat.com (Postfix, from userid 469) id F40C4112E4; Thu, 7 Feb 2002 23:33:30 -0500 (EST) From: Elena Zannoni MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15459.21786.811685.87376@localhost.redhat.com> Date: Thu, 07 Feb 2002 20:33:00 -0000 To: Andrew Cagney Cc: Elena Zannoni , gdb-patches@sources.redhat.com Subject: Re: [PATCH] sh-tdep.c update to real size of saved_regs[] In-Reply-To: <3C634183.1020500@cygnus.com> References: <15459.16261.845953.879703@localhost.redhat.com> <3C634183.1020500@cygnus.com> X-Mailer: VM 7.00 under Emacs 20.7.1 X-SW-Source: 2002-02/txt/msg00219.txt.bz2 Andrew Cagney writes: > > { > > - int where[NUM_REGS]; > > + int where[NUM_REGS + NUM_PSEUDO_REGS]; > > > BTW, that needs to be: > > > int *where = alloca (....); > > as the above is a GCCism :-(. > > Andrew > > Ah! Thanks. Will fix asap. Elena