summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mathfuncs_convert.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/mathfuncs_convert.h b/mathfuncs_convert.h
index 58d0682..6645f45 100644
--- a/mathfuncs_convert.h
+++ b/mathfuncs_convert.h
@@ -19,7 +19,7 @@ namespace vecmathlib {
// first pass (lobits), so that the second pass (hibits) may be
// omitted if the high bits are known to be zero.
int_t lobits = FP::mantissa_bits;
- int_t hibits = FP::bits - lobits;
+ // int_t hibits = FP::bits - lobits;
// Convert lower bits
intvec_t xlo = x & IV((U(1) << lobits) - 1);
OpenPOWER on IntegriCloud