comparison src/m/template.h @ 96602:0e3e875ffade

* lisp.h: * w32heap.c: * emacs.c: * alloc.c: Replace all references of NO_UNION_TYPE with USE_LISP_UNION_TYPE. * m/xtensa.h (NO_UNION_TYPE): * m/vax.h (NO_UNION_TYPE): * m/template.h (NO_UNION_TYPE): * m/sparc.h (NO_UNION_TYPE): * m/mips.h (NO_UNION_TYPE): * m/macppc.h (NO_UNION_TYPE): * m/m68k.h (NO_UNION_TYPE): * m/iris4d.h (NO_UNION_TYPE): * m/intel386.h (NO_UNION_TYPE): * m/ibms390x.h (NO_UNION_TYPE): * m/ibms390.h (NO_UNION_TYPE): * m/ibmrs6000.h (NO_UNION_TYPE): * m/ia64.h (NO_UNION_TYPE): * m/hp800.h (NO_UNION_TYPE): * m/arm.h (NO_UNION_TYPE): * m/amdx86-64.h (NO_UNION_TYPE): * m/alpha.h (NO_UNION_TYPE): Remove definition, all platform were defining it the same.
author Dan Nicolaescu <dann@ics.uci.edu>
date Fri, 11 Jul 2008 02:29:43 +0000
parents e1043d6b0d2b
children e038c1a8307c
comparison
equal deleted inserted replaced
96601:424fe1248b56 96602:0e3e875ffade
34 34
35 /* Now define a symbol for the cpu type, if your compiler 35 /* Now define a symbol for the cpu type, if your compiler
36 does not define it automatically. 36 does not define it automatically.
37 Ones defined so far include m68k and many others */ 37 Ones defined so far include m68k and many others */
38 38
39 /* Use type int rather than a union, to represent Lisp_Object */
40 /* This is desirable for most machines. */
41
42 #define NO_UNION_TYPE
43
44 /* Define EXPLICIT_SIGN_EXTEND if XINT must explicitly sign-extend 39 /* Define EXPLICIT_SIGN_EXTEND if XINT must explicitly sign-extend
45 the 24-bit bit field into an int. In other words, if bit fields 40 the 24-bit bit field into an int. In other words, if bit fields
46 are always unsigned. 41 are always unsigned.
47 42
48 If you use NO_UNION_TYPE, this flag does not matter. */ 43 This flag only matters if you use USE_LISP_UNION_TYPE. */
49 44
50 #define EXPLICIT_SIGN_EXTEND 45 #define EXPLICIT_SIGN_EXTEND
51 46
52 /* Data type of load average, as read out of kmem. */ 47 /* Data type of load average, as read out of kmem. */
53 48