Skip to content

Commit 8b93d85

Browse files
committed
minor improvements
1 parent 27b6809 commit 8b93d85

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

src/SUMMARY.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
- [Constant evaluation](./const-eval.md)
5555
- [miri const evaluator](./miri.md)
5656
- [Parameter Environments](./param_env.md)
57-
- [Generating LLVM IR](./codegen.md)
57+
- [Code Generation](./codegen.md)
5858
- [Emitting Diagnostics](./diag.md)
5959

6060
---

src/codegen.md

+5
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
Code generation or "codegen" is the part of the compiler that actually
44
generates an executable binary. rustc uses LLVM for code generation.
55

6+
> NOTE: If you are looking for hints on how to debug code generation bugs,
7+
> please see [this section of the debugging chapter][debug].
8+
9+
[debug]: compiler-debugging.html#debugging-llvm
10+
611
## What is LLVM?
712

813
All of the preceeding chapters of this guide have one thing in common: we never

0 commit comments

Comments
 (0)