From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5134 invoked by alias); 4 Jan 2002 22:10:59 -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 5092 invoked from network); 4 Jan 2002 22:10:58 -0000 Received: from unknown (HELO dr-evil.shagadelic.org) (208.176.2.162) by sources.redhat.com with SMTP; 4 Jan 2002 22:10:58 -0000 Received: by dr-evil.shagadelic.org (Postfix, from userid 7518) id 2A94D9869; Fri, 4 Jan 2002 14:10:58 -0800 (PST) Date: Fri, 04 Jan 2002 14:10:00 -0000 From: Jason R Thorpe To: gdb-patches@sourceware.cygnus.com Subject: [patch] Make i386nbsd-nat.c compile again Message-ID: <20020104141058.D9599@dr-evil.shagadelic.org> Reply-To: thorpej@wasabisystems.com Mail-Followup-To: Jason R Thorpe , gdb-patches@sourceware.cygnus.com Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="vOmOzSkFvhd7u8Ms" Content-Disposition: inline User-Agent: Mutt/1.2.5i Organization: Wasabi Systems, Inc. X-SW-Source: 2002-01/txt/msg00039.txt.bz2 --vOmOzSkFvhd7u8Ms Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 301 The following patch makes i386nbsd-nat.c compile again by pulling in i386-tdep.h. OK to commit? [ for gdb/ChangeLog ] 2002-01-04 Jason Thorpe * i386nbsd-nat.c: Update copyright years. Include i386-tdep.h. -- -- Jason R. Thorpe --vOmOzSkFvhd7u8Ms Content-Type: text/plain; charset=us-ascii Content-Description: patch2 Content-Disposition: attachment; filename=JRT-patch2 Content-length: 988 Index: i386nbsd-nat.c =================================================================== RCS file: /cvs/src/src/gdb/i386nbsd-nat.c,v retrieving revision 1.8 diff -c -r1.8 i386nbsd-nat.c *** i386nbsd-nat.c 2001/05/04 04:15:25 1.8 --- i386nbsd-nat.c 2002/01/04 22:05:20 *************** *** 1,5 **** /* Native-dependent code for NetBSD/i386, for GDB. ! Copyright 1988, 1989, 1991, 1992, 1994, 1996, 2000, 2001 Free Software Foundation, Inc. This file is part of GDB. --- 1,5 ---- /* Native-dependent code for NetBSD/i386, for GDB. ! Copyright 1988, 1989, 1991, 1992, 1994, 1996, 2000, 2001, 2002 Free Software Foundation, Inc. This file is part of GDB. *************** *** 27,32 **** --- 27,35 ---- #include "inferior.h" #include "gdbcore.h" /* for registers_fetched() */ #include "regcache.h" + + /* Defines for XMM0_REGNUM etc. */ + #include "i386-tdep.h" #define RF(dst, src) \ memcpy(®isters[REGISTER_BYTE(dst)], &src, sizeof(src)) --vOmOzSkFvhd7u8Ms--