aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2017-07-05 11:19:03 -0400
committerNick Mathewson <nickm@torproject.org>2017-07-05 11:19:03 -0400
commit8bc70a2ad2c0363986e4b002ceaf259908d67e70 (patch)
tree0209118f55fc8f7746325e91356e208f87efcbfe /src
parentd9427c00dfcda58d1a2561b37c1c6217d2ff692a (diff)
parentbb97f680e74170673246b3de32e847ade46840f2 (diff)
downloadtor-8bc70a2ad2c0363986e4b002ceaf259908d67e70.tar.gz
tor-8bc70a2ad2c0363986e4b002ceaf259908d67e70.zip
Merge branch 'maint-0.2.9' into maint-0.3.0
Diffstat (limited to 'src')
-rw-r--r--src/common/util.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/common/util.c b/src/common/util.c
index f980fa296c..fef30e4a5f 100644
--- a/src/common/util.c
+++ b/src/common/util.c
@@ -5734,6 +5734,15 @@ clamp_double_to_int64(double number)
{
int exponent;
+#if defined(__MINGW32__) || defined(__MINGW64__)
+/*
+ Mingw's math.h uses gcc's __builtin_choose_expr() facility to declare
+ isnan, isfinite, and signbit. But as implemented in at least some
+ versions of gcc, __builtin_choose_expr() can generate type warnings
+ even from branches that are not taken. So, suppress those warnings.
+*/
+DISABLE_GCC_WARNING(float-conversion)
+#endif
/* NaN is a special case that can't be used with the logic below. */
if (isnan(number)) {
return 0;
@@ -5759,6 +5768,9 @@ clamp_double_to_int64(double number)
/* Handle infinities and finite numbers with magnitude >= 2^63. */
return signbit(number) ? INT64_MIN : INT64_MAX;
+#if defined(__MINGW32__) || defined(__MINGW64__)
+ENABLE_GCC_WARNING(float-conversion)
+#endif
}
/** Return a uint64_t value from <b>a</b> in network byte order. */