aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDan Nicolaescu2010-04-23 14:58:07 -0700
committerDan Nicolaescu2010-04-23 14:58:07 -0700
commit1ad4cc3d07cf1a155522f2104a43af1aeaef7ae9 (patch)
tree31e32a03819732ea3891049d7d319d16a7f0dbda /src
parent728588ccfd643b2161a186ee782db7695a1d9118 (diff)
downloademacs-1ad4cc3d07cf1a155522f2104a43af1aeaef7ae9.tar.gz
emacs-1ad4cc3d07cf1a155522f2104a43af1aeaef7ae9.zip
* m/mips.h: Remove #if 0 code.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/m/mips.h18
2 files changed, 4 insertions, 18 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 2a7212d8b26..b5464d9f8d4 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
2
3 * m/mips.h: Remove #if 0 code.
4
12010-04-23 Eli Zaretskii <eliz@gnu.org> 52010-04-23 Eli Zaretskii <eliz@gnu.org>
2 6
3 Fix display of composed characters from L2R scripts in bidi buffers. 7 Fix display of composed characters from L2R scripts in bidi buffers.
diff --git a/src/m/mips.h b/src/m/mips.h
index 7a84b6596c8..4828b7479fc 100644
--- a/src/m/mips.h
+++ b/src/m/mips.h
@@ -50,24 +50,6 @@ NOTE-END */
50 50
51#define TEXT_START 0x00400000 51#define TEXT_START 0x00400000
52 52
53
54#if 0 /* These definitions were advantageous when not using
55 USE_LSB_TAG. With that, they get ignored but cause errors. */
56
57#define DATA_SEG_BITS 0x10000000
58
59/* The standard definitions of these macros would work ok,
60 but these are faster because the constants are short. */
61
62#define XUINT(a) (((unsigned)(a) << (BITS_PER_INT-VALBITS)) >> (BITS_PER_INT-VALBITS))
63
64#define XSET(var, type, ptr) \
65 ((var) = \
66 ((int)(type) << VALBITS) \
67 + (((unsigned) (ptr) << (BITS_PER_INT-VALBITS)) >> (BITS_PER_INT-VALBITS)))
68
69/* arch-tag: 8fd020ee-78a7-4d87-96ce-6129f52f7bee 53/* arch-tag: 8fd020ee-78a7-4d87-96ce-6129f52f7bee
70 (do not change this comment) */ 54 (do not change this comment) */
71 55
72#endif /* 0 */
73