summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFranziskus Kiefer <franziskuskiefer@gmail.com>2017-05-23 16:26:39 +0200
committerFranziskus Kiefer <franziskuskiefer@gmail.com>2017-05-23 16:26:39 +0200
commit25269679022d14808afd1d37e1739a8209ea494d (patch)
treef5a27c35698aca9a45efae03c4b986ef381003b7
parente491f19ccd1b6e567734b753338ba8cd86d19ac4 (diff)
downloadnss-hg-25269679022d14808afd1d37e1739a8209ea494d.tar.gz
Bug 1362392 - always add s_mpv_div_2dx1d when we don't have an assembly version, r=ttaubert
Differential Revision: https://nss-review.dev.mozaws.net/D330
-rw-r--r--lib/freebl/mpi/mpi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/freebl/mpi/mpi.c b/lib/freebl/mpi/mpi.c
index f56ab9deb..f7784c8d9 100644
--- a/lib/freebl/mpi/mpi.c
+++ b/lib/freebl/mpi/mpi.c
@@ -4089,7 +4089,7 @@ s_mpv_sqr_add_prop(const mp_digit *pa, mp_size a_len, mp_digit *ps)
}
#endif
-#if (defined(MP_NO_MP_WORD) || defined(MP_NO_DIV_WORD)) && !defined(MP_ASSEMBLY_DIV_2DX1D)
+#if !defined(MP_ASSEMBLY_DIV_2DX1D)
/*
** Divide 64-bit (Nhi,Nlo) by 32-bit divisor, which must be normalized
** so its high bit is 1. This code is from NSPR.