diff options
author | Simon Marlow <marlowsd@gmail.com> | 2010-04-22 21:36:05 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2010-04-22 21:36:05 +0000 |
commit | c93bd73f12d7036d297d00fc4082699f568c7d43 (patch) | |
tree | 8446648c5ed0a7781b99079045db41e5f0bee226 /includes/Cmm.h | |
parent | 591e1dc91ab7bb1f91b516d1b1ea59c3a8809955 (diff) | |
download | haskell-c93bd73f12d7036d297d00fc4082699f568c7d43.tar.gz |
fix 64-bit value for W_SHIFT, which thankfully appears to be not used
Diffstat (limited to 'includes/Cmm.h')
-rw-r--r-- | includes/Cmm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/Cmm.h b/includes/Cmm.h index 183e10394f..52b5bec415 100644 --- a/includes/Cmm.h +++ b/includes/Cmm.h @@ -169,7 +169,7 @@ #if SIZEOF_W == 4 #define W_SHIFT 2 #elif SIZEOF_W == 8 -#define W_SHIFT 4 +#define W_SHIFT 3 #endif /* Converting quantities of words to bytes */ |