diff options
| author | Joshua Nelson <jyn514@gmail.com> | 2020-12-01 17:41:09 -0500 |
|---|---|---|
| committer | Joshua Nelson <jyn514@gmail.com> | 2020-12-18 15:22:51 -0500 |
| commit | 35f16c60e7d3fd1b42c90a0fc084689c817345cb (patch) | |
| tree | fdd0b51ddd9b829f07541125daf67eacb7510f2f /compiler/rustc_mir/src/dataflow | |
| parent | d8d3ab96aa94423f1bdfbb605098a506ab5edc7e (diff) | |
| download | rust-35f16c60e7d3fd1b42c90a0fc084689c817345cb.tar.gz rust-35f16c60e7d3fd1b42c90a0fc084689c817345cb.zip | |
Switch compiler/ to intra-doc links
rustc_lint and rustc_lint_defs weren't switched because they're included in the compiler book and so can't use intra-doc links.
Diffstat (limited to 'compiler/rustc_mir/src/dataflow')
| -rw-r--r-- | compiler/rustc_mir/src/dataflow/impls/liveness.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_mir/src/dataflow/impls/liveness.rs b/compiler/rustc_mir/src/dataflow/impls/liveness.rs index a2b0713cd7d..85aaff5ab72 100644 --- a/compiler/rustc_mir/src/dataflow/impls/liveness.rs +++ b/compiler/rustc_mir/src/dataflow/impls/liveness.rs @@ -11,7 +11,7 @@ use crate::dataflow::{AnalysisDomain, Backward, GenKill, GenKillAnalysis}; /// exist. See [this `mir-dataflow` test][flow-test] for an example. You almost never want to use /// this analysis without also looking at the results of [`MaybeBorrowedLocals`]. /// -/// [`MaybeBorrowedLocals`]: ../struct.MaybeBorrowedLocals.html +/// [`MaybeBorrowedLocals`]: super::MaybeBorrowedLocals /// [flow-test]: https://github.com/rust-lang/rust/blob/a08c47310c7d49cbdc5d7afb38408ba519967ecd/src/test/ui/mir-dataflow/liveness-ptr.rs /// [liveness]: https://en.wikipedia.org/wiki/Live_variable_analysis pub struct MaybeLiveLocals; |
