DEC C complains about bad subscript, but we know better, so let's shut it up.

This commit is contained in:
Richard Levitte 2005-05-24 03:22:56 +00:00
parent 69762c75fa
commit 2f596aeef5

View file

@ -282,6 +282,11 @@ int BN_nist_mod_192(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,
nist_cp_bn_0(buf, a_d + BN_NIST_192_TOP, top - BN_NIST_192_TOP, BN_NIST_192_TOP); nist_cp_bn_0(buf, a_d + BN_NIST_192_TOP, top - BN_NIST_192_TOP, BN_NIST_192_TOP);
#if defined(OPENSSL_SYS_VMS) && defined(__DECC)
# pragma save
# pragma message disable BADSUBSCRIPT
#endif
nist_set_192(t_d, buf, 0, 3, 3); nist_set_192(t_d, buf, 0, 3, 3);
if (bn_add_words(r_d, r_d, t_d, BN_NIST_192_TOP)) if (bn_add_words(r_d, r_d, t_d, BN_NIST_192_TOP))
++carry; ++carry;
@ -290,6 +295,10 @@ int BN_nist_mod_192(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,
if (bn_add_words(r_d, r_d, t_d, BN_NIST_192_TOP)) if (bn_add_words(r_d, r_d, t_d, BN_NIST_192_TOP))
++carry; ++carry;
#if defined(OPENSSL_SYS_VMS) && defined(__DECC)
# pragma restore
#endif
nist_set_192(t_d, buf, 5, 5, 5) nist_set_192(t_d, buf, 5, 5, 5)
if (bn_add_words(r_d, r_d, t_d, BN_NIST_192_TOP)) if (bn_add_words(r_d, r_d, t_d, BN_NIST_192_TOP))
++carry; ++carry;