Suggestion for incorrect target_feature
use
#61285
Labels
A-diagnostics
Area: Messages for errors, warnings, and lints
A-suggestion-diagnostics
Area: Suggestions generated by the compiler applied by `cargo fix`
A-target-feature
Area: Enabling/disabling target features like AVX, Neon, etc.
C-enhancement
Category: An issue proposing an enhancement or a PR with one.
D-papercut
Diagnostics: An error or lint that needs small tweaks.
P-low
Low priority
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
When encountering
#[target_feature = "+sse2"]
, suggest#[target_feature(enable = "+sse2")]
instead of the current#[target_feature(enable = "name")]
.(Follow up to #61140)
The text was updated successfully, but these errors were encountered: