aboutsummaryrefslogtreecommitdiffstats
path: root/src/zsqr.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2016-03-17 12:33:10 +0100
committerMattias Andrée <maandree@kth.se>2016-03-25 12:45:34 +0100
commitff185ae276b4f27b1650b03afdd56d2ecdfddd18 (patch)
tree26899520cf33cacebf27c59e04d92e1570d42ccc /src/zsqr.c
parentAdd note on performance of commutative functions with assignment to operand (diff)
downloadlibzahl-ff185ae276b4f27b1650b03afdd56d2ecdfddd18.tar.gz
libzahl-ff185ae276b4f27b1650b03afdd56d2ecdfddd18.tar.bz2
libzahl-ff185ae276b4f27b1650b03afdd56d2ecdfddd18.tar.xz
Rename zsplit_unsigned_fast_small_tainted to zsplit_unsigned_fast_small_auto
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'src/zsqr.c')
-rw-r--r--src/zsqr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zsqr.c b/src/zsqr.c
index 8a616f0..c686348 100644
--- a/src/zsqr.c
+++ b/src/zsqr.c
@@ -41,7 +41,7 @@ zsqr_impl(z_t a, z_t b)
if (bits < BITS_PER_CHAR) {
low->chars = auxchars;
high->chars = auxchars + 1;
- zsplit_unsigned_fast_small_tainted(high, low, b, bits);
+ zsplit_unsigned_fast_small_auto(high, low, b, bits);
} else {
bits &= ~(BITS_PER_CHAR - 1);
zsplit_unsigned_fast_large_taint(high, low, b, bits);