From: Simon Marlow Date: Thu, 22 Apr 2010 21:36:05 +0000 (+0000) Subject: fix 64-bit value for W_SHIFT, which thankfully appears to be not used X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=c93bd73f12d7036d297d00fc4082699f568c7d43 fix 64-bit value for W_SHIFT, which thankfully appears to be not used --- diff --git a/includes/Cmm.h b/includes/Cmm.h index 183e103..52b5bec 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 */