aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDan Nicolaescu2010-07-26 21:03:14 -0700
committerDan Nicolaescu2010-07-26 21:03:14 -0700
commit6ba577cbed5eddcf89c6707a5be838a4f598fbf6 (patch)
treed5278c0fb545b7838339cf21df19c4f2c834a8af /src
parentfdb183d636da4d6a0bda4ee65a7f1480a087ccc5 (diff)
downloademacs-6ba577cbed5eddcf89c6707a5be838a4f598fbf6.tar.gz
emacs-6ba577cbed5eddcf89c6707a5be838a4f598fbf6.zip
* src/m/iris4d.h (XUINT, XSET): Remove, not needed.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog2
-rw-r--r--src/m/iris4d.h12
2 files changed, 2 insertions, 12 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index c293e06c2d0..8abb9b6ab7f 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,7 @@
12010-07-27 Dan Nicolaescu <dann@ics.uci.edu> 12010-07-27 Dan Nicolaescu <dann@ics.uci.edu>
2 2
3 * m/iris4d.h (XUINT, XSET): Remove, not needed.
4
3 * process.c: Move definitions earlier to minimize #ifdefs. 5 * process.c: Move definitions earlier to minimize #ifdefs.
4 6
5 * xterm.h (x_get_customization_string, x_load_resources) 7 * xterm.h (x_get_customization_string, x_load_resources)
diff --git a/src/m/iris4d.h b/src/m/iris4d.h
index 2ba6b5ba7ce..526d68ee5fc 100644
--- a/src/m/iris4d.h
+++ b/src/m/iris4d.h
@@ -36,17 +36,5 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
36#define DATA_START 0x10000000 36#define DATA_START 0x10000000
37#define DATA_SEG_BITS 0x10000000 37#define DATA_SEG_BITS 0x10000000
38 38
39
40#if _MIPS_SZLONG != 64
41/* fixme: should there be 64-bit definitions? (The ones below aren't OK.) */
42
43/* The standard definitions of these macros would work ok,
44 but these are faster because the constants are short. */
45#define XUINT(a) (((unsigned)(a) << BITS_PER_INT-VALBITS) >> BITS_PER_INT-VALBITS)
46
47#define XSET(var, type, ptr) \
48 ((var) = ((int)(type) << VALBITS) + (((unsigned) (ptr) << BITS_PER_INT-VALBITS) >> BITS_PER_INT-VALBITS))
49#endif /* _LP64 */
50
51/* arch-tag: fff5e139-9ae0-465d-afec-837c41ea0aa6 39/* arch-tag: fff5e139-9ae0-465d-afec-837c41ea0aa6
52 (do not change this comment) */ 40 (do not change this comment) */