-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Keep unstable target features for asm feature checking #99155
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Inline assembly uses the target features to determine which registers are available on the current target. However it needs to be able to access unstable target features for this. Fixes rust-lang#99071
r? @lcnr (rust-highfive has picked a reviewer for you, use r? to override) |
looks good to me, but i don't feel like i 100% understand what's going on. reassigning to get another pair of eyes here r? rust-lang/compiler |
LGTM. relnotes tag since this will reject code currently (erroneously) accepted on stable? |
I've added the
|
@bors r+ |
Inline assembly uses the target features to determine which registers
are available on the current target. However it needs to be able to
access unstable target features for this.
Fixes #99071