about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorDan Robertson <dan@dlrobertson.com>2019-03-20 14:03:54 +0000
committerWho? Me?! <mark-i-m@users.noreply.github.com>2019-03-22 16:29:47 -0500
commit5a9da9eba0c67ac0c2d5e3a43daae38b7877893f (patch)
treead4373e11292a3b57e499fc6b8abdd6a85aba2f6 /src/doc/rustc-dev-guide
parent51c36400abc68fb6fa8d80a434230bd0a2f7f8b5 (diff)
downloadrust-5a9da9eba0c67ac0c2d5e3a43daae38b7877893f.tar.gz
rust-5a9da9eba0c67ac0c2d5e3a43daae38b7877893f.zip
Update link to debugging codegen
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/codegen.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/rustc-dev-guide/src/codegen.md b/src/doc/rustc-dev-guide/src/codegen.md
index 766dfff59d8..c8d51f31843 100644
--- a/src/doc/rustc-dev-guide/src/codegen.md
+++ b/src/doc/rustc-dev-guide/src/codegen.md
@@ -4,9 +4,9 @@ Code generation or "codegen" is the part of the compiler that actually
 generates an executable binary. rustc uses LLVM for code generation.
 
 > NOTE: If you are looking for hints on how to debug code generation bugs,
-> please see [this section of the debugging chapter][debug].
+> please see [this section of the debugging chapter][debugging].
 
-[debug]: compiler-debugging.html#debugging-llvm
+[debugging]: codegen/debugging.html
 
 ## What is LLVM?