Skip to content

Commit ce3ff58

Browse files
committed
line length
1 parent d023ac7 commit ce3ff58

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/overview.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -395,5 +395,6 @@ bootstrapping compiler will support them.
395395
- Guide: [Code Generation](https://rustc-dev-guide.rust-lang.org/backend/codegen.html)
396396
- Generating Machine Code from LLVM IR with LLVM - **TODO: reference?**
397397
- Main entry point: [`rustc_codegen_ssa::base::codegen_crate`](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_codegen_ssa/base/fn.codegen_crate.html)
398-
- This monomorphizes and produces LLVM IR for one codegen unit. It then starts a background thread to run LLVM, which must be joined later.
398+
- This monomorphizes and produces LLVM IR for one codegen unit. It then
399+
starts a background thread to run LLVM, which must be joined later.
399400
- Monomorphization happens lazily via [`FunctionCx::monomorphize`](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_codegen_ssa/mir/struct.FunctionCx.html#method.monomorphize) and [`rustc_codegen_ssa::base::codegen_instance `](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_codegen_ssa/base/fn.codegen_instance.html)

0 commit comments

Comments
 (0)