Rollup merge of #66226 - lzutao:asm-usage-link, r=Centril

add link to unstable book for asm! macro

r? @Centril
This commit is contained in:
Mazdak Farrokhzad 2019-11-09 07:18:35 +01:00 committed by GitHub
commit 3ef975d4be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1274,6 +1274,10 @@ macro_rules! assert {
}
/// Inline assembly.
///
/// Read the [unstable book] for the usage.
///
/// [unstable book]: ../unstable-book/library-features/asm.html
#[unstable(feature = "asm", issue = "29722",
reason = "inline assembly is not stable enough for use and is subject to change")]
#[rustc_builtin_macro]