Checking patch sysdeps/aarch64/fpu/expm1f_sve.c... error: while searching for: . */ #include "sv_math.h" #include "poly_sve_f32.h" /* Largest value of x for which expm1(x) should round to -1. */ #define SpecialBound 0x1.5ebc4p+6f error: patch failed: sysdeps/aarch64/fpu/expm1f_sve.c:18 error: sysdeps/aarch64/fpu/expm1f_sve.c: patch does not apply Checking patch sysdeps/aarch64/fpu/sinhf_sve.c... error: while searching for: if (__glibc_unlikely (svptest_any (pg, special))) return special_case (x, svmul_x (pg, t, halfsign), special); return svmul_x (pg, t, halfsign); } error: patch failed: sysdeps/aarch64/fpu/sinhf_sve.c:63 error: sysdeps/aarch64/fpu/sinhf_sve.c: patch does not apply Checking patch sysdeps/aarch64/fpu/sv_expm1f_inline.h... error: while searching for: /* These 4 are grouped together so they can be loaded as one quadword, then used with _lane forms of svmla/svmls. */ float32_t c2, c4, ln2_hi, ln2_lo; float32_t c0, c1, c3, inv_ln2, shift; }; /* Coefficients generated using fpminimax. */ #define SV_EXPM1F_DATA \ { \ .c0 = 0x1.fffffep-2, .c1 = 0x1.5554aep-3, .c2 = 0x1.555736p-5, \ .c3 = 0x1.12287cp-7, .c4 = 0x1.6b55a2p-10, \ \ .shift = 0x1.8p23f, .inv_ln2 = 0x1.715476p+0f, .ln2_hi = 0x1.62e4p-1f, \ .ln2_lo = 0x1.7f7d1cp-20f, \ } #define C(i) sv_f32 (d->c##i) static inline svfloat32_t expm1f_inline (svfloat32_t x, svbool_t pg, const struct sv_expm1f_data *d) { error: patch failed: sysdeps/aarch64/fpu/sv_expm1f_inline.h:27 error: sysdeps/aarch64/fpu/sv_expm1f_inline.h: patch does not apply Checking patch sysdeps/aarch64/fpu/tanhf_sve.c... error: while searching for: #include "sv_expm1f_inline.h" static const struct data { struct sv_expm1f_data expm1f_consts; uint32_t boring_bound, onef; } data = { .expm1f_consts = SV_EXPM1F_DATA, /* 0x1.205966p+3, above which tanhf rounds to 1 (or -1 for negative). */ .boring_bound = 0x41102cb3, .onef = 0x3f800000, }; static svfloat32_t NOINLINE special_case (svfloat32_t x, svfloat32_t y, svbool_t special) { return sv_call_f32 (tanhf, x, y, special); } error: patch failed: sysdeps/aarch64/fpu/tanhf_sve.c:19 error: sysdeps/aarch64/fpu/tanhf_sve.c: patch does not apply