diff options
author | Jason Thorpe <thorpej@netbsd.org> | 2002-01-04 22:43:31 +0000 |
---|---|---|
committer | Jason Thorpe <thorpej@netbsd.org> | 2002-01-04 22:43:31 +0000 |
commit | 3549ab40a574684f73e09712952f45ff504099f5 (patch) | |
tree | 0f0b3eb185d9d5c6e02c7ebd3dd159e5f368109a | |
parent | 596bfd105ba4fea98d97a4870716786544ae1ce8 (diff) | |
download | fsf-binutils-gdb-3549ab40a574684f73e09712952f45ff504099f5.zip fsf-binutils-gdb-3549ab40a574684f73e09712952f45ff504099f5.tar.gz fsf-binutils-gdb-3549ab40a574684f73e09712952f45ff504099f5.tar.bz2 |
* i386nbsd-nat.c: Update copyright years.
Include i386-tdep.h.
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/i386nbsd-nat.c | 5 |
2 files changed, 9 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 61e9a24..6f0e5d9 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2002-01-04 Jason Thorpe <thorpej@wasabisystems.com> + + * i386nbsd-nat.c: Update copyright years. + Include i386-tdep.h. + 2002-01-04 Elena Zannoni <ezannoni@redhat.com> * stabsread.c: Update copyright years. diff --git a/gdb/i386nbsd-nat.c b/gdb/i386nbsd-nat.c index d8537fa..a3d5d63 100644 --- a/gdb/i386nbsd-nat.c +++ b/gdb/i386nbsd-nat.c @@ -1,5 +1,5 @@ /* Native-dependent code for NetBSD/i386, for GDB. - Copyright 1988, 1989, 1991, 1992, 1994, 1996, 2000, 2001 + Copyright 1988, 1989, 1991, 1992, 1994, 1996, 2000, 2001, 2002 Free Software Foundation, Inc. This file is part of GDB. @@ -28,6 +28,9 @@ #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)) |