summaryrefslogtreecommitdiff
path: root/tune
diff options
context:
space:
mode:
authorNiels M?ller <nisse@lysator.liu.se>2013-03-10 10:00:12 +0100
committerNiels M?ller <nisse@lysator.liu.se>2013-03-10 10:00:12 +0100
commit7581d07264deeedd37379655ae16cc480de3b0fb (patch)
treeb99e7e9d114d5994648e143e4f8d15b16e26877c /tune
parentcdfd6eeb629aeec2a983b483ca7d789375204e9c (diff)
downloadgmp-7581d07264deeedd37379655ae16cc480de3b0fb.tar.gz
Reorder arguments for mpn_addcnd_n and mpn_subcnd_n.
Diffstat (limited to 'tune')
-rw-r--r--tune/common.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tune/common.c b/tune/common.c
index 0fcb216e2..0790a4c32 100644
--- a/tune/common.c
+++ b/tune/common.c
@@ -1133,12 +1133,12 @@ speed_mpn_rsh1sub_n (struct speed_params *s)
double
speed_mpn_addcnd_n (struct speed_params *s)
{
- SPEED_ROUTINE_MPN_BINARY_N_CALL (mpn_addcnd_n (wp, xp, yp, s->size, 1));
+ SPEED_ROUTINE_MPN_BINARY_N_CALL (mpn_addcnd_n (1, wp, xp, yp, s->size));
}
double
speed_mpn_subcnd_n (struct speed_params *s)
{
- SPEED_ROUTINE_MPN_BINARY_N_CALL (mpn_subcnd_n (wp, xp, yp, s->size, 1));
+ SPEED_ROUTINE_MPN_BINARY_N_CALL (mpn_subcnd_n (1, wp, xp, yp, s->size));
}
/* mpn_and_n etc can be macros and so have to be handled with