You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Expect stable_features lint for stable SIMD types (#2584)
Previously, x86 AVX-12 SIMD types were gated by the unstable
`stdarch_x86_avx512` feature. As of this writing, that feature has been
stabilized on 1.89.0-nightly, staged for inclusion in 1.89.0 when it is
released as stable.
This means that the `simd-nightly` Cargo feature, which gates
`stdarch_x86_avx512`, will now cause the `stable_features` lint to
trigger when compiling on x86.
This commit enables `expect(stable_features)` when compiling with
`simd-nightly` for x86. Once 1.89.0 is released as stable, we will
follow up with a commit which uses version detection to enable support
for AVX-12 types, and we will remove our use of the `stdarch_x86_avx512`
feature entirely.
Makes progress on #2583
gherrit-pr-id: I7772b004a30ead788978e194181306fb98e092fa
0 commit comments