summaryrefslogtreecommitdiff
path: root/mpn/cray/lshift.c
diff options
context:
space:
mode:
Diffstat (limited to 'mpn/cray/lshift.c')
-rw-r--r--mpn/cray/lshift.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mpn/cray/lshift.c b/mpn/cray/lshift.c
index 64302e9d3..482747254 100644
--- a/mpn/cray/lshift.c
+++ b/mpn/cray/lshift.c
@@ -29,7 +29,7 @@ mpn_lshift (mp_ptr wp, mp_srcptr up, mp_size_t n, unsigned int cnt)
mp_limb_t retval;
sh_1 = cnt;
- sh_2 = BITS_PER_MP_LIMB - sh_1;
+ sh_2 = GMP_LIMB_BITS - sh_1;
retval = up[n - 1] >> sh_2;
#pragma _CRI ivdep