Blame patches/musl_sqrtl_const_expression-1.2.3.patch

8759ae
diff --git a/src/math/sqrtl.c b/src/math/sqrtl.c
8759ae
index 1b9f19c7..0a8efb9f 100644
8759ae
--- musl-1.2.3.orig/src/math/sqrtl.c
8759ae
+++ musl-1.2.3/src/math/sqrtl.c
8759ae
@@ -227,7 +227,7 @@ long double sqrtl(long double x)
8759ae
 	r = mul64(u, r) << 1;
8759ae
 	/* |r sqrt(m) - 1| < 0x1.c001p-59, switch to 128bit */
8759ae
 
8759ae
-	static const u128 threel = {.hi=three<<32, .lo=0};
8759ae
+	static const u128 threel = {.hi=(uint64_t)0xc0000000<<32, .lo=0};
8759ae
 	u128 rl, sl, dl, ul;
8759ae
 	rl.hi = r;
8759ae
 	rl.lo = 0;