1995-08-09 08:06:35 -07:00
|
|
|
/***********************************************************************/
|
|
|
|
/* */
|
1996-04-30 07:53:58 -07:00
|
|
|
/* Objective Caml */
|
1995-08-09 08:06:35 -07:00
|
|
|
/* */
|
|
|
|
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
|
|
|
|
/* */
|
1996-04-30 07:53:58 -07:00
|
|
|
/* Copyright 1996 Institut National de Recherche en Informatique et */
|
1995-08-09 08:06:35 -07:00
|
|
|
/* Automatique. Distributed only by permission. */
|
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
1995-08-09 07:52:04 -07:00
|
|
|
/* Processor dependencies */
|
|
|
|
|
1996-02-13 08:29:09 -08:00
|
|
|
#define SIXTYFOUR
|
|
|
|
|
|
|
|
/* Define SIXTYFOUR if the processor has a natural word size of 64 bits.
|
|
|
|
That is, both sizeof(long) = 8 and sizeof(char *) = 8.
|
|
|
|
Otherwise, leave SIXTYFOUR undefined. This assumes
|
|
|
|
sizeof(long) = sizeof(char *) = 4. */
|
|
|
|
|
1995-08-09 07:52:04 -07:00
|
|
|
#define BIG_ENDIAN
|
|
|
|
|
|
|
|
/* Define BIG_ENDIAN if the processor is big endian (the most significant
|
|
|
|
byte of an integer stored in memory comes first). Leave BIG_ENDIAN undefined
|
|
|
|
if the processor is little-endian (the least significant byte comes first).
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define ALIGN_DOUBLE
|
|
|
|
|
|
|
|
/* Define ALIGN_DOUBLE if the processor requires doubles to be
|
|
|
|
doubleword-aligned. Leave ALIGN_DOUBLE undefined if the processor supports
|
|
|
|
word-aligned doubles. */
|
1996-02-13 08:29:09 -08:00
|
|
|
|