From 3db1005c9d5731915dc06652fde03902b75ad65a Mon Sep 17 00:00:00 2001 From: Lzu Tao Date: Fri, 8 Nov 2019 15:58:25 +0000 Subject: [PATCH] add link to unstable book for asm! macro --- src/libcore/macros.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/libcore/macros.rs b/src/libcore/macros.rs index 131fb52e2d22b..726d187d2e981 100644 --- a/src/libcore/macros.rs +++ b/src/libcore/macros.rs @@ -1274,6 +1274,10 @@ pub(crate) mod builtin { } /// 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]