[openssl-commits] [openssl] OpenSSL_1_0_2-stable update

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


The branch OpenSSL_1_0_2-stable has been updated
       via  78ac7fa18d25f66c89adcb646c04d69b8c805ca7 (commit)
      from  11414f17d93ec04d2d056d5f3a87e964a7412431 (commit)


- Log -----------------------------------------------------------------
commit 78ac7fa18d25f66c89adcb646c04d69b8c805ca7
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 7cd5883..00f4f09 100644
--- a/crypto/bn/bn_lcl.h
+++ b/crypto/bn/bn_lcl.h
@@ -294,7 +294,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