gz / rust-x86

Rust library to use x86 (amd64) specific functionality and registers.
https://docs.rs/x86
MIT License
307 stars 61 forks source link

`llvm_asm!` is deprecated and removed on latest nightly #120

Closed not-matthias closed 2 years ago

not-matthias commented 2 years ago

It should be replaced with the newer asm! macro.

See: https://github.com/rust-lang/rust/issues/70173

dancrossnyc commented 2 years ago

https://github.com/gz/rust-x86/pull/121 addresses this.

dancrossnyc commented 2 years ago

PR #121 is now committed, and @gz cut a new crate release, so this should be good to go now!

gz commented 2 years ago

@dancrossnyc pull request is now merged. Thanks for reporting!