about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authormark <markm@cs.wisc.edu>2020-04-04 13:30:40 -0500
committerWho? Me?! <mark-i-m@users.noreply.github.com>2020-04-18 11:11:33 -0500
commit797e95fdf3937d8ffbe072a546bd16cdd0faff04 (patch)
tree74abf3f5b7fe4aa40aacc9594e8f200f6df0cefa /src/doc/rustc-dev-guide
parent253fbce8e6fe648706396a882d7d80d7b451bc04 (diff)
downloadrust-797e95fdf3937d8ffbe072a546bd16cdd0faff04.tar.gz
rust-797e95fdf3937d8ffbe072a546bd16cdd0faff04.zip
add an entry point
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/overview.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/overview.md b/src/doc/rustc-dev-guide/src/overview.md
index e2dc1e12b33..9b67343af4b 100644
--- a/src/doc/rustc-dev-guide/src/overview.md
+++ b/src/doc/rustc-dev-guide/src/overview.md
@@ -364,4 +364,5 @@ bootstrapping compiler will support them.
   - Guide: [Code Generation](https://rustc-dev-guide.rust-lang.org/codegen.html)
   - Guide: [Generating LLVM IR](https://rustc-dev-guide.rust-lang.org/codegen.html#generating-llvm-ir) - **TODO: this is not available yet**
   - Generating Machine Code from LLVM IR with LLVM - **TODO: reference?**
-  - Main entry point MIR -> Machine Code: [`rustc_codegen_ssa::base::codegen_crate`](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_codegen_ssa/base/fn.codegen_crate.html)
+  - Main entry point MIR -> LLVM IR: [`MonoItem::define`](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_codegen_llvm/mono_item/enum.MonoItem.html#method.define)
+  - Main entry point LLVM IR -> Machine Code: [`rustc_codegen_ssa::base::codegen_crate`](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_codegen_ssa/base/fn.codegen_crate.html)