summaryrefslogtreecommitdiff
path: root/includes/Cmm.h
diff options
context:
space:
mode:
authorSimon Marlow <marlowsd@gmail.com>2010-04-22 21:36:05 +0000
committerSimon Marlow <marlowsd@gmail.com>2010-04-22 21:36:05 +0000
commitc93bd73f12d7036d297d00fc4082699f568c7d43 (patch)
tree8446648c5ed0a7781b99079045db41e5f0bee226 /includes/Cmm.h
parent591e1dc91ab7bb1f91b516d1b1ea59c3a8809955 (diff)
downloadhaskell-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.h2
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 */