diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 1995-07-27 17:41:09 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 1995-07-27 17:41:09 +0000 |
commit | 863984ea8ba4be4fc317680c3c457aa8f89c2c72 (patch) | |
tree | bf5238495f6f944178e294c623a68ceafee97df5 /byterun/intext.h | |
parent | b44ab158b2735be981330ff8a0d696051a246cc6 (diff) |
Ajout du tag Double_array_tag.
Deplacement de copy_double dans floats.c.
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@153 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'byterun/intext.h')
-rw-r--r-- | byterun/intext.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/byterun/intext.h b/byterun/intext.h index 7b1a26c41..501bed6a4 100644 --- a/byterun/intext.h +++ b/byterun/intext.h @@ -34,6 +34,13 @@ #else #define CODE_DOUBLE_NATIVE CODE_DOUBLE_LITTLE #endif +#define CODE_DOUBLE_ARRAY_BIG 0xD +#define CODE_DOUBLE_ARRAY_LITTLE 0xE +#ifdef BIG_ENDIAN +#define CODE_DOUBLE_ARRAY_NATIVE CODE_DOUBLE_ARRAY_BIG +#else +#define CODE_DOUBLE_ARRAY_NATIVE CODE_DOUBLE_ARRAY_LITTLE +#endif /* Initial sizes of data structures for extern */ |