From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8651 invoked by alias); 6 Jan 2003 10:30:55 -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 8605 invoked from network); 6 Jan 2003 10:30:48 -0000 Received: from unknown (HELO takamaka.act-europe.fr) (217.128.22.42) by 209.249.29.67 with SMTP; 6 Jan 2003 10:30:48 -0000 Received: by takamaka.act-europe.fr (Postfix, from userid 507) id 6EC1FD34AE; Mon, 6 Jan 2003 14:30:34 +0400 (RET) Date: Mon, 06 Jan 2003 10:30:00 -0000 From: Joel Brobecker To: gdb-patches@sources.redhat.com Subject: [commit] fix a small compilation failure in alpha-tdep.c Message-ID: <20030106103034.GU693@gnat.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="5xSkJheCpeK0RUEJ" Content-Disposition: inline User-Agent: Mutt/1.4i X-SW-Source: 2003-01/txt/msg00201.txt.bz2 --5xSkJheCpeK0RUEJ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 283 I checked the following patch in. The compilation failure appeared while I was building GDB on Tru64... 2003-01-06 J. Brobecker * alpha-tdep.c (alpha_gdbarch_init): Fix a small compilation failure introduced in the previous change. -- Joel --5xSkJheCpeK0RUEJ Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="alpha-tdep.c.diff" Content-length: 836 Index: alpha-tdep.c =================================================================== RCS file: /cvs/src/src/gdb/alpha-tdep.c,v retrieving revision 1.54 diff -c -3 -p -r1.54 alpha-tdep.c *** alpha-tdep.c 5 Jan 2003 01:39:54 -0000 1.54 --- alpha-tdep.c 6 Jan 2003 10:24:17 -0000 *************** alpha_gdbarch_init (struct gdbarch_info *** 1776,1782 **** { /* If it's an ECOFF file, assume it's OSF/1. */ if (bfd_get_flavour (info.abfd) == bfd_target_ecoff_flavour) ! osabi = GDB_OSABI_OSF1; } /* Find a candidate among extant architectures. */ --- 1776,1782 ---- { /* If it's an ECOFF file, assume it's OSF/1. */ if (bfd_get_flavour (info.abfd) == bfd_target_ecoff_flavour) ! info.osabi = GDB_OSABI_OSF1; } /* Find a candidate among extant architectures. */ --5xSkJheCpeK0RUEJ--