From 9ca825e292ce43869dd97e544a1cb112aff0339c Mon Sep 17 00:00:00 2001 From: Wesley Wiser <wwiser@gmail.com> Date: Sun, 29 Oct 2017 22:53:07 -0400 Subject: [PATCH] Add link to stablized version of an intrinsic --- src/libcore/intrinsics.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/libcore/intrinsics.rs b/src/libcore/intrinsics.rs index 8afa3a860d9..0136273ebc9 100644 --- a/src/libcore/intrinsics.rs +++ b/src/libcore/intrinsics.rs @@ -627,6 +627,9 @@ extern "rust-intrinsic" { pub fn rustc_peek<T>(_: T) -> T; /// Aborts the execution of the process. + /// + /// The stabilized version of this intrinsic is + /// [`std::process::abort`](../../std/process/fn.abort.html) pub fn abort() -> !; /// Tells LLVM that this point in the code is not reachable, enabling