summaryrefslogtreecommitdiff
path: root/gdb/i386bsd-nat.c
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@gnu.org>2004-03-15 23:03:07 +0000
committerMark Kettenis <kettenis@gnu.org>2004-03-15 23:03:07 +0000
commit5ae25c7f558942d519b4a835a130b1104f12782f (patch)
tree1567f636dab8e2b1b0b73fdd261988be6381fc59 /gdb/i386bsd-nat.c
parentcfb6d1a438157b07322de19cb8702c8693fdbc10 (diff)
downloadgdb-5ae25c7f558942d519b4a835a130b1104f12782f.tar.gz
* i386bsd-nat.c: Update copyright year.
(CANNOT_FETCH_REGISTER, CANNOT_STORE_REGISTER): Undefine and then define unconditionally.
Diffstat (limited to 'gdb/i386bsd-nat.c')
-rw-r--r--gdb/i386bsd-nat.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/gdb/i386bsd-nat.c b/gdb/i386bsd-nat.c
index 9383a1d5fea..e97d3e5552a 100644
--- a/gdb/i386bsd-nat.c
+++ b/gdb/i386bsd-nat.c
@@ -1,5 +1,6 @@
/* Native-dependent code for modern i386 BSD's.
- Copyright 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
+
+ Copyright 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
This file is part of GDB.
@@ -52,14 +53,12 @@ typedef struct fpreg fpregset_t;
presence, and deal gracefully with their absence. */
/* Registers we shouldn't try to fetch. */
-#if !defined (CANNOT_FETCH_REGISTER)
+#undef CANNOT_FETCH_REGISTER
#define CANNOT_FETCH_REGISTER(regno) cannot_fetch_register (regno)
-#endif
/* Registers we shouldn't try to store. */
-#if !defined (CANNOT_STORE_REGISTER)
+#undef CANNOT_STORE_REGISTER
#define CANNOT_STORE_REGISTER(regno) cannot_fetch_register (regno)
-#endif
/* Offset to the gregset_t location where REG is stored. */
#define REG_OFFSET(reg) offsetof (gregset_t, reg)