diff options
| author | Yuki Okushi <huyuumi.dev@gmail.com> | 2020-06-02 13:07:17 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-02 13:07:17 +0900 |
| commit | 0007924cd096a26c67bd48bf167adfc59ddf45c0 (patch) | |
| tree | 7353327d01f1a814d69e9010972031c92275d768 /src/libcore | |
| parent | f1732f66ff36ae2e650b01182d3071bc3df96e51 (diff) | |
| parent | d49020573c34611b748b2d7737563f594f5c0215 (diff) | |
| download | rust-0007924cd096a26c67bd48bf167adfc59ddf45c0.tar.gz rust-0007924cd096a26c67bd48bf167adfc59ddf45c0.zip | |
Rollup merge of #72825 - Amanieu:asm-warning, r=davidtwco
Clarify errors and warnings about the transition to the new asm! Hopefully addresses the concerns from https://github.com/rust-lang/rust/pull/71007#issuecomment-636412905.
Diffstat (limited to 'src/libcore')
| -rw-r--r-- | src/libcore/macros/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/macros/mod.rs b/src/libcore/macros/mod.rs index 625ceb0953b..3cfdde60135 100644 --- a/src/libcore/macros/mod.rs +++ b/src/libcore/macros/mod.rs @@ -1315,7 +1315,7 @@ pub(crate) mod builtin { #[unstable( feature = "llvm_asm", issue = "70173", - reason = "LLVM-style inline assembly will never be stabilized, prefer using asm! instead" + reason = "prefer using the new asm! syntax instead" )] #[rustc_builtin_macro] #[macro_export] |
