summaryrefslogtreecommitdiff
path: root/tune/tuneup.c
diff options
context:
space:
mode:
authorTorbjorn Granlund <tege@gmplib.org>2014-01-19 13:25:03 +0100
committerTorbjorn Granlund <tege@gmplib.org>2014-01-19 13:25:03 +0100
commit5c972901ec4cca2668d9b294077540200f403e69 (patch)
treef41afbe38095935c886ba0a401b45c7d35cb8e44 /tune/tuneup.c
parentbead3dcb5969491d6aee692ac7bc8d30b2e27521 (diff)
downloadgmp-5c972901ec4cca2668d9b294077540200f403e69.tar.gz
Get rid of BYTES_PER_MP_LIMB, most files affected.
Diffstat (limited to 'tune/tuneup.c')
-rw-r--r--tune/tuneup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tune/tuneup.c b/tune/tuneup.c
index 6dcf2b6c2..de03ad61b 100644
--- a/tune/tuneup.c
+++ b/tune/tuneup.c
@@ -2595,7 +2595,7 @@ speed_mpn_pre_set_str (struct speed_params *s)
ASSERT_ALWAYS (mpn_set_str (wp, str, s->size, base) <= wn);
*/
- speed_operand_src (s, (mp_ptr) str, s->size/BYTES_PER_MP_LIMB);
+ speed_operand_src (s, (mp_ptr) str, s->size/GMP_LIMB_BYTES);
speed_operand_dst (s, wp, wn);
speed_cache_fill (s);