aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>2009-03-01 12:42:45 +0000
committerRichard M. Stallman <[email protected]>2009-03-01 12:42:45 +0000
commit2f63bba8e16755943ab6c7faa14b47f12b7f86fd (patch)
tree1f98404eb2a16a6a6fb58908942ccd242e0cdfee
parent4f7cb96d1225c5295b1b6cfd08d44cdbdee928a7 (diff)
(DATA_SEG_BITS, XUINT, XSET): Definitions disabled.
-rw-r--r--src/ChangeLog6
-rw-r--r--src/m/mips.h9
2 files changed, 14 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 8f8e06650b..ba9168911a 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,9 @@
+2009-03-01 Richard M Stallman <[email protected]>
+
+ * m/mips.h (DATA_SEG_BITS, XUINT, XSET): Definitions disabled.
+
+ * emacs.c (gdb_data_seg_bits) [USE_LSB_TAG]: Make it 0.
+
2009-02-28 Eli Zaretskii <[email protected]>
* coding.c (decode_coding_utf_8, decode_coding_utf_16)
diff --git a/src/m/mips.h b/src/m/mips.h
index 09487b4596..b361c9aa01 100644
--- a/src/m/mips.h
+++ b/src/m/mips.h
@@ -50,9 +50,13 @@ NOTE-END */
#define TEXT_START 0x00400000
#define DATA_START 0x10000000
-#define DATA_SEG_BITS 0x10000000
+#if 0 /* These definitions were advantageous when not using
+ USE_LSB_TAG. With that, they get ignored but cause errors. */
+
+#define DATA_SEG_BITS 0x10000000
+
/* The standard definitions of these macros would work ok,
but these are faster because the constants are short. */
@@ -65,3 +69,6 @@ NOTE-END */
/* arch-tag: 8fd020ee-78a7-4d87-96ce-6129f52f7bee
(do not change this comment) */
+
+#endif /* 0 */
+