[openssl-commits] [openssl] OpenSSL_1_0_1-stable update

Andy Polyakov appro at openssl.org
Tue May 26 08:09:34 UTC 2015


The branch OpenSSL_1_0_1-stable has been updated
       via  8af13192708a8560916d10dcb0475273c4597172 (commit)
      from  38b7073328fc0f2713d377472de8d189ae42eda1 (commit)


- Log -----------------------------------------------------------------
commit 8af13192708a8560916d10dcb0475273c4597172
Author: Andy Polyakov <appro at openssl.org>
Date:   Mon May 25 10:17:14 2015 +0200

    bn/bn_lcl.h: fix MIPS-specific gcc version check.
    
    RT#3859
    
    Reviewed-by: Tim Hudson <tjh at openssl.org>
    (cherry picked from commit 60c268b21ac81cc6b1af5c5470282a613b96f6fd)

-----------------------------------------------------------------------

Summary of changes:
 crypto/bn/bn_lcl.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/crypto/bn/bn_lcl.h b/crypto/bn/bn_lcl.h
index 1059d1d..904a723 100644
--- a/crypto/bn/bn_lcl.h
+++ b/crypto/bn/bn_lcl.h
@@ -276,7 +276,7 @@ unsigned __int64 _umul128(unsigned __int64 a, unsigned __int64 b,
 #   endif
 #  elif defined(__mips) && (defined(SIXTY_FOUR_BIT) || defined(SIXTY_FOUR_BIT_LONG))
 #   if defined(__GNUC__) && __GNUC__>=2
-#    if __GNUC__>=4 && __GNUC_MINOR__>=4
+#    if __GNUC__>4 || (__GNUC__>=4 && __GNUC_MINOR__>=4)
                                      /* "h" constraint is no more since 4.4 */
 #     define BN_UMULT_HIGH(a,b)          (((__uint128_t)(a)*(b))>>64)
 #     define BN_UMULT_LOHI(low,high,a,b) ({     \


More information about the openssl-commits mailing list