diff options
author | simonmar <unknown> | 2001-07-19 09:01:40 +0000 |
---|---|---|
committer | simonmar <unknown> | 2001-07-19 09:01:40 +0000 |
commit | f57d31353e0a36bbdb6b93b6d46e2bcd76d6a8e0 (patch) | |
tree | 1ae0ff7936b2ec741732f11c08354faa60978bfa | |
parent | 761af91eb2b24770ff549ba75ad8e589e1657942 (diff) | |
download | haskell-f57d31353e0a36bbdb6b93b6d46e2bcd76d6a8e0.tar.gz |
[project @ 2001-07-19 09:01:40 by simonmar]
remove a vestige of the long-gone FLOATS_AS_DOUBLES
-rw-r--r-- | ghc/includes/MachDeps.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/ghc/includes/MachDeps.h b/ghc/includes/MachDeps.h index 48c54e8ac1..7d59d98626 100644 --- a/ghc/includes/MachDeps.h +++ b/ghc/includes/MachDeps.h @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: MachDeps.h,v 1.4 2000/01/25 14:39:14 panne Exp $ + * $Id: MachDeps.h,v 1.5 2001/07/19 09:01:40 simonmar Exp $ * * (c) The GRASP/AQUA Project, Glasgow University, 1998 * (c) The GHC Team, 1998-1999 @@ -21,13 +21,8 @@ #define INT_SIZE_IN_BYTES SIZEOF_LONG #define WORD_SIZE_IN_BYTES SIZEOF_LONG -#if SIZEOF_DOUBLE == SIZEOF_VOID_P -#define FLOAT_SIZE_IN_BYTES SIZEOF_DOUBLE -#define DOUBLE_SIZE_IN_BYTES SIZEOF_DOUBLE -#else #define FLOAT_SIZE_IN_BYTES SIZEOF_FLOAT #define DOUBLE_SIZE_IN_BYTES SIZEOF_DOUBLE -#endif #define SIZEOF_INT8 SIZEOF_CHAR #define ALIGNMENT_INT8 ALIGNMENT_CHAR |