Skip to content

Commit 7427d24

Browse files
committed
Remove dead link to perf.rlo
1 parent 3f21a3c commit 7427d24

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

posts/inside-rust/2019-11-22-const-prop-on-by-default.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ let x = 26;
103103
## Compiler performance
104104

105105
As you might have guessed, reducing the amount of control flow processed by the Rust compiler has a positive effect on compile times.
106-
We're seeing [2-10% improvement][perf_times] on a variety of test cases in both debug and release mode.
106+
We're seeing 2-10% improvement on a variety of test cases in both debug and release mode.
107107
Even though LLVM has its own constant propagation pass, we see improvements because our pass operates on MIR while it is still generic.
108108
The more concrete instances of a generic function that are instantiated, the larger the payoff from this optimization.
109109

@@ -113,5 +113,4 @@ If you'd like to get involved with the MIR Optimizations working group, stop by
113113

114114
[mir]: https://blog.rust-lang.org/2016/04/19/MIR.html
115115
[pr]: https://github.com/rust-lang/rust/pull/66074
116-
[perf_times]: https://perf.rust-lang.org/compare.html?start=0ccee30773050f6bf50fd6ceb9ac61e6d58aa4d8&end=d1da8023dafd3e277b5a4c5475aa2cb199a176b9&stat=wall-time
117116
[zulip]: https://rust-lang.zulipchat.com/#narrow/stream/189540-t-compiler.2Fwg-mir-opt

0 commit comments

Comments
 (0)