diff --git a/internal/core/src/bitset/detail/platform/arm/sve-impl.h b/internal/core/src/bitset/detail/platform/arm/sve-impl.h index 83a9eeff37..7cd69c7022 100644 --- a/internal/core/src/bitset/detail/platform/arm/sve-impl.h +++ b/internal/core/src/bitset/detail/platform/arm/sve-impl.h @@ -1318,30 +1318,6 @@ struct ArithHelperI64 { template struct ArithHelperF32 {}; -template -struct ArithHelperF32 { - static inline svbool_t - op_special(const svbool_t pred, - const svfloat32_t left, - const svfloat32_t right, - const svfloat32_t value) { - // this is valid for the positive denominator, == and != cases. - // left == right * value - return CmpHelper::compare( - pred, left, svmul_f32_z(pred, right, value)); - } - - static inline svbool_t - op(const svbool_t pred, - const svfloat32_t left, - const svfloat32_t right, - const svfloat32_t value) { - // left / right == value - return CmpHelper::compare( - pred, svdiv_f32_z(pred, left, right), value); - } -}; - template struct ArithHelperF32 { static inline svbool_t