Silence 'r may be used uninitialized' compiler warning.
diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c
index d1c4822..201ffc4 100644
--- a/Modules/mathmodule.c
+++ b/Modules/mathmodule.c
@@ -569,6 +569,7 @@
 
 	/* deal directly with IEEE specials, to cope with problems on various
 	   platforms whose semantics don't exactly match C99 */
+	r = 0.; /* silence compiler warning */
 	if (!Py_IS_FINITE(x) || !Py_IS_FINITE(y)) {
 		errno = 0;
 		if (Py_IS_NAN(x))