From: Matt Caswell Date: Thu, 18 Jan 2018 14:15:46 +0000 (+0000) Subject: Fix travis failure in f_impl.c X-Git-Tag: OpenSSL_1_1_1-pre2~81 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=dd03fd7e3ada3a9ebdb83fc5e4164b2a404e6c62;p=oweals%2Fopenssl.git Fix travis failure in f_impl.c Reviewed-by: Bernd Edlinger (Merged from https://github.com/openssl/openssl/pull/5105) --- diff --git a/crypto/ec/curve448/arch_32/f_impl.c b/crypto/ec/curve448/arch_32/f_impl.c index 78f788b5b1..8ba7c630e7 100644 --- a/crypto/ec/curve448/arch_32/f_impl.c +++ b/crypto/ec/curve448/arch_32/f_impl.c @@ -12,7 +12,7 @@ #include "field.h" -#if (defined(__OPTIMIZE__) && !defined(__OPTIMIZE_SIZE__) && !I_HATE_UNROLLED_LOOPS) \ +#if (defined(__OPTIMIZE__) && !defined(__OPTIMIZE_SIZE__) && !defined(I_HATE_UNROLLED_LOOPS)) \ || defined(C448_FORCE_UNROLL) # define REPEAT8(_x) _x _x _x _x _x _x _x _x # define FOR_LIMB(_i,_start,_end,_x) do { _i=_start; REPEAT8( if (_i<_end) { _x; } _i++;) } while (0)