From: Dan Nicolaescu Date: Tue, 27 Jul 2010 04:03:14 +0000 (-0700) Subject: * src/m/iris4d.h (XUINT, XSET): Remove, not needed. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~438^2~49^2~124 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6ba577cbed5eddcf89c6707a5be838a4f598fbf6;p=emacs.git * src/m/iris4d.h (XUINT, XSET): Remove, not needed. --- diff --git a/src/ChangeLog b/src/ChangeLog index c293e06c2d0..8abb9b6ab7f 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,7 @@ 2010-07-27 Dan Nicolaescu + * m/iris4d.h (XUINT, XSET): Remove, not needed. + * process.c: Move definitions earlier to minimize #ifdefs. * 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 . */ #define DATA_START 0x10000000 #define DATA_SEG_BITS 0x10000000 - -#if _MIPS_SZLONG != 64 -/* fixme: should there be 64-bit definitions? (The ones below aren't OK.) */ - -/* The standard definitions of these macros would work ok, - but these are faster because the constants are short. */ -#define XUINT(a) (((unsigned)(a) << BITS_PER_INT-VALBITS) >> BITS_PER_INT-VALBITS) - -#define XSET(var, type, ptr) \ - ((var) = ((int)(type) << VALBITS) + (((unsigned) (ptr) << BITS_PER_INT-VALBITS) >> BITS_PER_INT-VALBITS)) -#endif /* _LP64 */ - /* arch-tag: fff5e139-9ae0-465d-afec-837c41ea0aa6 (do not change this comment) */