aboutsummaryrefslogtreecommitdiffstats
path: root/src/zmul.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2016-04-29 21:54:39 +0200
committerMattias Andrée <maandree@kth.se>2016-04-29 21:55:15 +0200
commit4bba6e7176632b4d760ba9362a1515552471d741 (patch)
treeedd86d32b0867990bf953568164800391b769589 /src/zmul.c
parentrefsheet: fix type of second parameter for zseti, zsetu, zcmpi, and zcmpu (diff)
downloadlibzahl-4bba6e7176632b4d760ba9362a1515552471d741.tar.gz
libzahl-4bba6e7176632b4d760ba9362a1515552471d741.tar.bz2
libzahl-4bba6e7176632b4d760ba9362a1515552471d741.tar.xz
Some optimisations, fix refsheet, and disable const/pure attributes in gmp in benchmark
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'src/zmul.c')
-rw-r--r--src/zmul.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/zmul.c b/src/zmul.c
index 6ea6d21..3129061 100644
--- a/src/zmul.c
+++ b/src/zmul.c
@@ -53,8 +53,8 @@ zmul_impl(z_t a, z_t b, z_t c)
zinit_temp(c_high);
zinit_temp(c_low);
- zsplit(b_high, b_low, b, m2);
- zsplit(c_high, c_low, c, m2);
+ zsplit_pz(b_high, b_low, b, m2);
+ zsplit_pz(c_high, c_low, c, m2);
zmul_impl(z0, b_low, c_low);