Module Name: src
Committed By: christos
Date: Fri Jul 12 22:44:33 UTC 2019
Modified Files:
src/external/gpl3/gdb/dist/gdb: amd64-nbsd-nat.c i386-nbsd-nat.c
Log Message:
remove ancient and unused regset_t definitions
To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/external/gpl3/gdb/dist/gdb/amd64-nbsd-nat.c
cvs rdiff -u -r1.5 -r1.6 src/external/gpl3/gdb/dist/gdb/i386-nbsd-nat.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/gpl3/gdb/dist/gdb/amd64-nbsd-nat.c
diff -u src/external/gpl3/gdb/dist/gdb/amd64-nbsd-nat.c:1.8 src/external/gpl3/gdb/dist/gdb/amd64-nbsd-nat.c:1.9
--- src/external/gpl3/gdb/dist/gdb/amd64-nbsd-nat.c:1.8 Thu May 30 17:16:03 2019
+++ src/external/gpl3/gdb/dist/gdb/amd64-nbsd-nat.c Fri Jul 12 18:44:33 2019
@@ -32,16 +32,6 @@
#include <machine/pcb.h>
#include <machine/reg.h>
-#ifndef HAVE_GREGSET_T
-typedef struct reg gregset_t;
-#endif
-
-#ifndef HAVE_FPREGSET_T
-typedef struct fpreg fpregset_t;
-#endif
-
-#include "gregset.h"
-
/* Mapping between the general-purpose registers in NetBSD/amd64
`struct reg' format and GDB's register cache layout for
NetBSD/i386.
Index: src/external/gpl3/gdb/dist/gdb/i386-nbsd-nat.c
diff -u src/external/gpl3/gdb/dist/gdb/i386-nbsd-nat.c:1.5 src/external/gpl3/gdb/dist/gdb/i386-nbsd-nat.c:1.6
--- src/external/gpl3/gdb/dist/gdb/i386-nbsd-nat.c:1.5 Sun May 26 17:40:01 2019
+++ src/external/gpl3/gdb/dist/gdb/i386-nbsd-nat.c Fri Jul 12 18:44:33 2019
@@ -36,16 +36,6 @@
#include "nbsd-nat.h"
#include "bsd-kvm.h"
-#ifndef HAVE_GREGSET_T
-typedef struct reg gregset_t;
-#endif
-
-#ifndef HAVE_FPREGSET_T
-typedef struct fpreg fpregset_t;
-#endif
-
-#include "gregset.h"
-
static int
i386nbsd_supply_pcb (struct regcache *regcache, struct pcb *pcb)
{