Checking patch sysdeps/aarch64/fpu/finite_pow.h... error: while searching for: { return 2 * i - 1 >= 2 * asuint64 (INFINITY) - 1; } static double NOINLINE pow_scalar_special_case (double x, double y) { uint32_t sign_bias = 0; uint64_t ix, iy; uint32_t topx, topy; ix = asuint64 (x); iy = asuint64 (y); topx = top12 (x); topy = top12 (y); if (__glibc_unlikely (topx - SmallPowX >= ThresPowX || (topy & 0x7ff) - SmallPowY >= ThresPowY)) { /* Note: if |y| > 1075 * ln2 * 2^53 ~= 0x1.749p62 then pow(x,y) = inf/0 and if |y| < 2^-54 / 1075 ~= 0x1.e7b6p-65 then pow(x,y) = +-1. */ /* Special cases: (x < 0x1p-126 or inf or nan) or (|y| < 0x1p-65 or |y| >= 0x1p63 or nan). */ if (__glibc_unlikely (zeroinfnan (iy))) { if (2 * iy == 0) return issignaling_inline (x) ? x + y : 1.0; if (ix == asuint64 (1.0)) return issignaling_inline (y) ? x + y : 1.0; if (2 * ix > 2 * asuint64 (INFINITY) || 2 * iy > 2 * asuint64 (INFINITY)) return x + y; if (2 * ix == 2 * asuint64 (1.0)) return 1.0; if ((2 * ix < 2 * asuint64 (1.0)) == !(iy >> 63)) return 0.0; /* |x|<1 && y==inf or |x|>1 && y==-inf. */ return y * y; } if (__glibc_unlikely (zeroinfnan (ix))) { double x2 = x * x; if (ix >> 63 && checkint (iy) == 1) { x2 = -x2; sign_bias = 1; } return iy >> 63 ? 1 / x2 : x2; } /* Here x and y are non-zero finite. */ if (ix >> 63) { /* Finite x < 0. */ int yint = checkint (iy); if (yint == 0) return __builtin_nan (""); if (yint == 1) sign_bias = SignBias; ix &= 0x7fffffffffffffff; topx &= 0x7ff; } if ((topy & 0x7ff) - SmallPowY >= ThresPowY) { /* Note: sign_bias == 0 here because y is not odd. */ if (ix == asuint64 (1.0)) return 1.0; /* |y| < 2^-65, x^y ~= 1 + y*log(x). */ if ((topy & 0x7ff) < SmallPowY) return 1.0; return (ix > asuint64 (1.0)) == (topy < 0x800) ? INFINITY : 0; } if (topx == 0) { /* Normalize subnormal x so exponent becomes negative. */ ix = asuint64 (x * 0x1p52); ix &= 0x7fffffffffffffff; ix -= 52ULL << 52; } } double lo; double hi = log_inline (ix, &lo); double ehi = y * hi; double elo = y * lo + fma (y, hi, -ehi); return exp_inline (ehi, elo, sign_bias); } error: patch failed: sysdeps/aarch64/fpu/finite_pow.h:247 error: sysdeps/aarch64/fpu/finite_pow.h: patch does not apply Checking patch sysdeps/aarch64/fpu/pow_advsimd.c... Checking patch sysdeps/aarch64/fpu/pow_sve.c... Checking patch sysdeps/aarch64/fpu/powf_advsimd.c... Checking patch sysdeps/aarch64/fpu/powf_sve.c... Checking patch sysdeps/aarch64/fpu/sv_pow_inline.h... Checking patch sysdeps/aarch64/fpu/sv_powf_inline.h... Checking patch sysdeps/aarch64/fpu/v_pow_inline.h... Checking patch sysdeps/aarch64/fpu/v_powf_inline.h... Checking patch sysdeps/aarch64/fpu/v_powrf_inline.h...