mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-08-02 20:24:39 +02:00
fix compile error due to Werro=undef on gcc-4.8
This commit is contained in:
@@ -598,7 +598,7 @@ static WC_INLINE sp_int_digit sp_div_word(sp_int_digit hi, sp_int_digit lo,
|
|||||||
: "cc"
|
: "cc"
|
||||||
);
|
);
|
||||||
return lo;
|
return lo;
|
||||||
#elif _MSC_VER >= 1920
|
#elif defined(_MSC_VER) && _MSC_VER >= 1920
|
||||||
return _udiv128(hi, lo, d, NULL);
|
return _udiv128(hi, lo, d, NULL);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user