diff options
| -rw-r--r-- | src/internals.h | 2 | ||||
| -rw-r--r-- | src/zsqr.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/internals.h b/src/internals.h index ed5d7e9..5f9ec96 100644 --- a/src/internals.h +++ b/src/internals.h @@ -250,7 +250,7 @@ zsplit_unsigned_fast_large_taint(z_t high, z_t low, z_t a, size_t n) } static inline void -zsplit_unsigned_fast_small_tainted(z_t high, z_t low, z_t a, size_t n) +zsplit_unsigned_fast_small_auto(z_t high, z_t low, z_t a, size_t n) { zahl_char_t mask = 1; mask = (mask << n) - 1; @@ -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); |
