diff options
| author | Mattias Andrée <maandree@kth.se> | 2016-03-17 12:33:10 +0100 |
|---|---|---|
| committer | Mattias Andrée <maandree@kth.se> | 2016-03-25 12:45:34 +0100 |
| commit | ff185ae276b4f27b1650b03afdd56d2ecdfddd18 (patch) | |
| tree | 26899520cf33cacebf27c59e04d92e1570d42ccc /src/zsqr.c | |
| parent | Add note on performance of commutative functions with assignment to operand (diff) | |
| download | libzahl-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |
