about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorChris Simpkins <git.simpkins@gmail.com>2020-03-22 18:43:02 -0400
committerWho? Me?! <mark-i-m@users.noreply.github.com>2020-03-22 17:58:00 -0500
commit74425d5eafdfd8e12d1703dc605cfe339bc97f06 (patch)
tree5aaedc65d94cf454966291abe4a3cf4883e42062 /src/doc/rustc-dev-guide
parent6e9fd16039eddb426f04bea99fb03b235bd60c5e (diff)
downloadrust-74425d5eafdfd8e12d1703dc605cfe339bc97f06.tar.gz
rust-74425d5eafdfd8e12d1703dc605cfe339bc97f06.zip
[stupid-stats] replace removed rustc_codegen_utils with rustc_codegen_ssa
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/appendix/stupid-stats.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/appendix/stupid-stats.md b/src/doc/rustc-dev-guide/src/appendix/stupid-stats.md
index ea9b6e0f063..7453f4424bb 100644
--- a/src/doc/rustc-dev-guide/src/appendix/stupid-stats.md
+++ b/src/doc/rustc-dev-guide/src/appendix/stupid-stats.md
@@ -94,7 +94,7 @@ translation).
 > NOTE: `librustc_trans` and `librustc_back` no longer exist, and we don't
 > translate AST or HIR directly to LLVM IR anymore.  Instead, see
 > [`librustc_codegen_llvm`](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_codegen_llvm/index.html)
-> and [`librustc_codegen_utils`](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_codegen_utils/index.html).
+> and [`librustc_codegen_ssa`](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_codegen_ssa/index.html).
 
 All these phases are coordinated by the driver. To see the exact sequence, look
 at the `compile_input` function in `librustc_driver`.