Fix x64 gmp init on platforms that define UL as 32 bits.

This commit is contained in:
evoskuil 2014-05-08 10:28:20 -07:00
parent 920c243932
commit ac274bff23
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ void static secp256k1_fe_inner_start(void) {
for (int i=0; i<(33+GMP_NUMB_BITS-1)/GMP_NUMB_BITS; i++)
secp256k1_field_pc[i] = 0;
secp256k1_field_pc[0] += 0x3D1UL;
secp256k1_field_pc[32/GMP_NUMB_BITS] += (1UL << (32 % GMP_NUMB_BITS));
secp256k1_field_pc[32/GMP_NUMB_BITS] += (((mp_limb_t)1) << (32 % GMP_NUMB_BITS));
for (int i=0; i<FIELD_LIMBS; i++) {
secp256k1_field_p[i] = 0;
}