use naked_asm!
in #[naked]
functions
#686
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Part of an effort to stabilize
#[naked]
functions rust-lang/rust#90957This PR uses
naked_asm!
instead ofasm!
in all#[naked]
functions, and removesoptions(noreturn)
which is implicit withnaked_asm!
the PR introducing
naked_asm!
just got merged rust-lang/rust#130146, so it'll likely take some time before this can get merged. Doescompiler-builtins
use the latest nightly, or is it a little behind?cc @Amanieu