summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me+cygwin@cgf.cx>2003-09-13 16:46:21 +0000
committerChristopher Faylor <me+cygwin@cgf.cx>2003-09-13 16:46:21 +0000
commit403d99099a914339dffa20d83f7ab138d33e45e3 (patch)
treee7f337ae1ec92f196aff13496a2954f154420c08
parent8e823e250401438d65d778ef0bbac70cb56d0bcc (diff)
downloadbinutils-gdb-403d99099a914339dffa20d83f7ab138d33e45e3.tar.gz
* win32-nat.c: Just rely on CONTEXT_EXTENDED_REGISTER being defined for SSE
registers since gdb will not operate correctly without this. Restore include file ordering munged in previous change. * config/i386/tm-cygwin.h: Remove HAVE_SSE_REGS define.
-rw-r--r--gdb/ChangeLog7
-rw-r--r--gdb/config/i386/tm-cygwin.h7
-rw-r--r--gdb/win32-nat.c19
-rw-r--r--gdb/windows-nat.c19
4 files changed, 21 insertions, 31 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index d74a8ad9af7..147eafb05f0 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,10 @@
+2003-09-13 Christopher Faylor <cgf@redhat.com>
+
+ * win32-nat.c: Just rely on CONTEXT_EXTENDED_REGISTER being defined for
+ SSE registers since gdb will not operate correctly without this.
+ Restore include file ordering munged in previous change.
+ * config/i386/tm-cygwin.h: Remove HAVE_SSE_REGS define.
+
2003-09-13 Mark Kettenis <kettenis@gnu.org>
* gdbarch.sh (DEPRECATED_REG_STRUCT_HAS_ADDR): Renamed from
diff --git a/gdb/config/i386/tm-cygwin.h b/gdb/config/i386/tm-cygwin.h
index 935966d46ba..4b926f96cd4 100644
--- a/gdb/config/i386/tm-cygwin.h
+++ b/gdb/config/i386/tm-cygwin.h
@@ -19,13 +19,6 @@
Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
-/* Use SSE registers if winnt.h contains information about them. */
-#ifdef CONTEXT_EXTENDED_REGISTERS
-#define HAVE_SSE_REGS
-#else
-#undef HAVE_SSE_REGS
-#endif /* CONTEXT_EXTENDED_REGISTERS */
-
#include "i386/tm-i386.h"
#define ATTACH_NO_WAIT
diff --git a/gdb/win32-nat.c b/gdb/win32-nat.c
index 807e9856624..f0d87efe24f 100644
--- a/gdb/win32-nat.c
+++ b/gdb/win32-nat.c
@@ -26,15 +26,7 @@
/* We assume we're being built with and will be used for cygwin. */
-#include <windows.h>
-#include <signal.h>
-#include <sys/types.h>
-#include <fcntl.h>
-#include <stdlib.h>
-#include <imagehlp.h>
-#include <sys/cygwin.h>
#include "defs.h"
-#include "tm.h" /* required for SSE registers */
#include "frame.h" /* required by inferior.h */
#include "inferior.h"
#include "target.h"
@@ -44,6 +36,13 @@
#include "regcache.h"
#include "top.h"
#include "i386-tdep.h"
+#include <signal.h>
+#include <sys/types.h>
+#include <fcntl.h>
+#include <stdlib.h>
+#include <windows.h>
+#include <imagehlp.h>
+#include <sys/cygwin.h>
#include "buildsym.h"
#include "symfile.h"
@@ -70,12 +69,8 @@ enum
#include <sys/procfs.h>
#include <psapi.h>
-#ifdef HAVE_SSE_REGS
#define CONTEXT_DEBUGGER_DR CONTEXT_DEBUGGER | CONTEXT_DEBUG_REGISTERS \
| CONTEXT_EXTENDED_REGISTERS
-#else
-#define CONTEXT_DEBUGGER_DR CONTEXT_DEBUGGER | CONTEXT_DEBUG_REGISTERS
-#endif
static unsigned dr[8];
static int debug_registers_changed = 0;
diff --git a/gdb/windows-nat.c b/gdb/windows-nat.c
index 807e9856624..f0d87efe24f 100644
--- a/gdb/windows-nat.c
+++ b/gdb/windows-nat.c
@@ -26,15 +26,7 @@
/* We assume we're being built with and will be used for cygwin. */
-#include <windows.h>
-#include <signal.h>
-#include <sys/types.h>
-#include <fcntl.h>
-#include <stdlib.h>
-#include <imagehlp.h>
-#include <sys/cygwin.h>
#include "defs.h"
-#include "tm.h" /* required for SSE registers */
#include "frame.h" /* required by inferior.h */
#include "inferior.h"
#include "target.h"
@@ -44,6 +36,13 @@
#include "regcache.h"
#include "top.h"
#include "i386-tdep.h"
+#include <signal.h>
+#include <sys/types.h>
+#include <fcntl.h>
+#include <stdlib.h>
+#include <windows.h>
+#include <imagehlp.h>
+#include <sys/cygwin.h>
#include "buildsym.h"
#include "symfile.h"
@@ -70,12 +69,8 @@ enum
#include <sys/procfs.h>
#include <psapi.h>
-#ifdef HAVE_SSE_REGS
#define CONTEXT_DEBUGGER_DR CONTEXT_DEBUGGER | CONTEXT_DEBUG_REGISTERS \
| CONTEXT_EXTENDED_REGISTERS
-#else
-#define CONTEXT_DEBUGGER_DR CONTEXT_DEBUGGER | CONTEXT_DEBUG_REGISTERS
-#endif
static unsigned dr[8];
static int debug_registers_changed = 0;