We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
asm!
llvm_asm!
The asm! macro has been renamed to llvm_asm! (rust-lang/rust#68404) and using asm! was deprecated (rust-lang/rust#71007). Using asm! instead of llvm_asm! is now a hard error in the last few versions of Rust nightly (see https://play.rust-lang.org/?version=nightly&mode=debug&edition=2018&gist=9de7ebfc56af3593c526f4bd7bba26f9 for an example). The new link in the unstable book is https://doc.rust-lang.org/nightly/unstable-book/library-features/llvm-asm.html. Note also that the feature has been renamed from asm to llvm_asm.
asm
llvm_asm
I don't have the time to submit a pull request with the necessary changes to the code and documentation but this should be relatively easy to change.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The
asm!
macro has been renamed tollvm_asm!
(rust-lang/rust#68404) and usingasm!
was deprecated (rust-lang/rust#71007).Using
asm!
instead ofllvm_asm!
is now a hard error in the last few versions of Rust nightly (see https://play.rust-lang.org/?version=nightly&mode=debug&edition=2018&gist=9de7ebfc56af3593c526f4bd7bba26f9 for an example).The new link in the unstable book is https://doc.rust-lang.org/nightly/unstable-book/library-features/llvm-asm.html.
Note also that the feature has been renamed from
asm
tollvm_asm
.I don't have the time to submit a pull request with the necessary changes to the code and documentation but this should be relatively easy to change.
The text was updated successfully, but these errors were encountered: