From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21176 invoked by alias); 16 May 2002 20:29:19 -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 21085 invoked from network); 16 May 2002 20:29:17 -0000 Received: from unknown (HELO touchme.toronto.redhat.com) (216.138.202.10) by sources.redhat.com with SMTP; 16 May 2002 20:29:17 -0000 Received: from tooth.toronto.redhat.com (unknown [172.16.14.29]) by touchme.toronto.redhat.com (Postfix) with ESMTP id 062FEB8013; Thu, 16 May 2002 16:29:14 -0400 (EDT) Received: (from bje@localhost) by tooth.toronto.redhat.com (8.11.6/8.11.6) id g4GKTDi26673; Thu, 16 May 2002 16:29:13 -0400 From: Ben Elliston MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15588.5785.547521.573944@tooth.toronto.redhat.com> Date: Thu, 16 May 2002 13:29:00 -0000 To: Andrew Cagney Cc: Joern Rennecke , gdb-patches@sources.redhat.com Subject: Re: Enum constants for sh1-sh4, sh{3}-dsp register numbers in the simulator In-Reply-To: <3CE2C44E.2090605@cygnus.com> References: <3CE24FEF.279A0207@superh.com> <3CE2C44E.2090605@cygnus.com> X-SW-Source: 2002-05/txt/msg00663.txt.bz2 >>>>> "Andrew" == Andrew Cagney writes: Andrew> Ben, can you please formally submit the code so that Joern is free Andrew> address the problems that are a barrier to it being integrated into GDB. Here is the neutralising patch. Okay to commit? 2002-05-16 Ben Elliston * configure.in: Add support for sh5. * configure: Regenerate. Index: configure =================================================================== RCS file: /cvs/src/src/sim/configure,v retrieving revision 1.7 diff -u -p -r1.7 configure --- configure 2 Feb 2002 04:48:32 -0000 1.7 +++ configure 16 May 2002 20:23:50 -0000 @@ -1447,6 +1447,10 @@ case "${target}" in mn10200*-*-*) sim_target=mn10200 ;; + sh64-*-*) + sim_target=sh64 + extra_subdirs="${extra_subdirs} testsuite" + ;; sh*-*-*) sim_target=sh ;; powerpc*-*-eabi* | powerpc*-*-solaris* | powerpc*-*-sysv4* | \ powerpc*-*-elf* | powerpc*-*-linux* | powerpc*-*-netbsd* ) Index: configure.in =================================================================== RCS file: /cvs/src/src/sim/configure.in,v retrieving revision 1.8 diff -u -p -r1.8 configure.in --- configure.in 2 Feb 2002 04:48:32 -0000 1.8 +++ configure.in 16 May 2002 20:23:50 -0000 @@ -86,6 +86,10 @@ case "${target}" in mn10200*-*-*) sim_target=mn10200 ;; + sh64-*-*) + sim_target=sh64 + extra_subdirs="${extra_subdirs} testsuite" + ;; sh*-*-*) sim_target=sh ;; powerpc*-*-eabi* | powerpc*-*-solaris* | powerpc*-*-sysv4* | \ powerpc*-*-elf* | powerpc*-*-linux* | powerpc*-*-netbsd* )