From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18485 invoked by alias); 3 Dec 2003 04:51:32 -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 18473 invoked from network); 3 Dec 2003 04:51:31 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sources.redhat.com with SMTP; 3 Dec 2003 04:51:31 -0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.11.6/8.11.6) with ESMTP id hB34pU229543 for ; Tue, 2 Dec 2003 23:51:30 -0500 Received: from pobox.corp.redhat.com (pobox.corp.redhat.com [172.16.52.156]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id hB34pU217981 for ; Tue, 2 Dec 2003 23:51:30 -0500 Received: from localhost.localdomain (vpn50-15.rdu.redhat.com [172.16.50.15]) by pobox.corp.redhat.com (8.12.8/8.12.8) with ESMTP id hB34pTbS032131 for ; Tue, 2 Dec 2003 23:51:29 -0500 Received: (from kev@localhost) by localhost.localdomain (8.11.6/8.11.6) id hB34pOT09165 for gdb-patches@sources.redhat.com; Tue, 2 Dec 2003 21:51:24 -0700 Date: Wed, 03 Dec 2003 04:51:00 -0000 From: Kevin Buettner Message-Id: <1031203045123.ZM9164@localhost.localdomain> To: gdb-patches@sources.redhat.com Subject: [PATCH] frv-tdep.c: Add fr550 support MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2003-12/txt/msg00073.txt.bz2 I've just committed the patch below. * frv-tdep.c (frv_gdbarch_init): Add case for fr550. Index: frv-tdep.c =================================================================== RCS file: /cvs/src/src/gdb/frv-tdep.c,v retrieving revision 1.62 diff -u -p -r1.62 frv-tdep.c --- frv-tdep.c 21 Nov 2003 21:36:23 -0000 1.62 +++ frv-tdep.c 3 Dec 2003 04:48:11 -0000 @@ -1207,6 +1207,7 @@ frv_gdbarch_init (struct gdbarch_info in case bfd_mach_frvsimple: case bfd_mach_fr500: case bfd_mach_frvtomcat: + case bfd_mach_fr550: set_variant_num_gprs (var, 64); set_variant_num_fprs (var, 64); break;