We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0d07aa commit 2a1387fCopy full SHA for 2a1387f
src/SUMMARY.md
@@ -54,7 +54,7 @@
54
- [Constant evaluation](./const-eval.md)
55
- [miri const evaluator](./miri.md)
56
- [Parameter Environments](./param_env.md)
57
-- [Generating LLVM IR](./codegen.md)
+- [Code Generation](./codegen.md)
58
- [Emitting Diagnostics](./diag.md)
59
60
---
src/codegen.md
@@ -3,6 +3,11 @@
3
Code generation or "codegen" is the part of the compiler that actually
4
generates an executable binary. rustc uses LLVM for code generation.
5
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
11
## What is LLVM?
12
13
All of the preceeding chapters of this guide have one thing in common: we never
0 commit comments