aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me+cygwin@cgf.cx>2000-03-25 03:37:35 +0000
committerChristopher Faylor <me+cygwin@cgf.cx>2000-03-25 03:37:35 +0000
commitddda03b2024669695e485058aee516c4a958d735 (patch)
tree22e3a202eaa4739daa58f782a53b8403efddc554
parent8227c82d1dba6c17fbfa066d271cd4cc0ed07476 (diff)
downloadgdb-ddda03b2024669695e485058aee516c4a958d735.zip
gdb-ddda03b2024669695e485058aee516c4a958d735.tar.gz
gdb-ddda03b2024669695e485058aee516c4a958d735.tar.bz2
* config/mips/tm-wince.h: Fix typo which caused include of tm-mips.h to be
inoperative.
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/config/mips/tm-wince.h7
2 files changed, 9 insertions, 3 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 78e1523..f4025c4 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,10 @@
2000-03-24 Christopher Faylor <cgf@cygnus.com>
+ * config/mips/tm-wince.h: Fix typo which caused include of tm-mips.h to
+ be inoperative.
+
+2000-03-24 Christopher Faylor <cgf@cygnus.com>
+
* win32-nat.c: Back out special frame walking code. It was broken.
(handle_exception): Correctly identify an illegal instruction.
* config/tm-cygwin.h: Eliminate special frame handling. Just use
diff --git a/gdb/config/mips/tm-wince.h b/gdb/config/mips/tm-wince.h
index f4bfad2..2cb7e49 100644
--- a/gdb/config/mips/tm-wince.h
+++ b/gdb/config/mips/tm-wince.h
@@ -1,4 +1,5 @@
/* Definitions to make GDB run on a Windows CE system.
+
Copyright 2000 Free Software Foundation, Inc.
This file is part of GDB.
@@ -18,8 +19,8 @@
Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
-#ifndef TM_MIPS_H
-#define TM_MIPS_H 1
+#ifndef TM_WINCE_H
+#define TM_WINCE_H 1
#include "mips/tm-mips.h"
@@ -31,4 +32,4 @@ void wince_software_single_step (unsigned int, int);
#undef TARGET_BYTE_ORDER_SELECTABLE
#define TARGET_BYTE_ORDER LITTLE_ENDIAN
-#endif /* TM_MIPS_H */
+#endif /* TM_WINCE_H */