Skip to content

Commit 1b74a55

Browse files
committed
Fix links.
1 parent 394cb02 commit 1b74a55

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler/rustc_mir_transform/src/jump_threading.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//! ------------/ \-------- ------------
88
//!
99
//!
10-
//! This implementation is heavily inspired by the work outlined in [1].
10+
//! This implementation is heavily inspired by the work outlined in [libfirm].
1111
//!
1212
//! The general algorithm proceeds in two phases: (1) walk the CFG backwards to construct a
1313
//! graph of threading conditions, and (2) propagate fulfilled conditions forward by duplicating
@@ -49,7 +49,7 @@
4949
//! conditions and also fulfills `cond`. This is made efficient by maintaining a map of duplicates,
5050
//! `duplicate[(target, cond)]` to avoid cloning blocks multiple times.
5151
//!
52-
//! [1] https://pp.ipd.kit.edu/uploads/publikationen/priesner17masterarbeit.pdf
52+
//! [libfirm]: <https://pp.ipd.kit.edu/uploads/publikationen/priesner17masterarbeit.pdf>
5353
5454
use std::cell::OnceCell;
5555

0 commit comments

Comments
 (0)