diff options
| author | bors <bors@rust-lang.org> | 2017-10-30 08:52:40 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2017-10-30 08:52:40 +0000 |
| commit | f0fe716dbcbf2363ab8f929325d32a17e51039d0 (patch) | |
| tree | 689f9c58f6bc6aaef61d1e28d470e45dd4a1b738 | |
| parent | 86d117832042fa37b5831f8275e5f14b45938b55 (diff) | |
| parent | 9ca825e292ce43869dd97e544a1cb112aff0339c (diff) | |
Auto merge of #45626 - wesleywiser:doc_update_1, r=Mark-Simulacrum
Add link to stablized version of an intrinsic
| -rw-r--r-- | src/libcore/intrinsics.rs | 3 |
1 files changed, 3 insertions, 0 deletions
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 |
