]> git.proxmox.com Git - rustc.git/blobdiff - src/doc/rustc-dev-guide/src/backend/codegen.md
Merge tag 'debian/1.52.1+dfsg1-1_exp2' into proxmox/buster
[rustc.git] / src / doc / rustc-dev-guide / src / backend / codegen.md
index d7bad9cfbbaa97abb727d6e15fe7886a010ed1dd..8e18ca2426c11c1df49c6757f04177eabe460428 100644 (file)
@@ -7,7 +7,7 @@ codegen itself. It's worth noting, though, that in the rust source code, many
 parts of the backend have `codegen` in their names (there are no hard
 boundaries).
 
-[Cranelift]: https://github.com/bytecodealliance/wasmtime/tree/master/cranelift
+[Cranelift]: https://github.com/bytecodealliance/wasmtime/tree/HEAD/cranelift
 
 > NOTE: If you are looking for hints on how to debug code generation bugs,
 > please see [this section of the debugging chapter][debugging].
@@ -63,8 +63,8 @@ before objects are passed on to the linker and some to happen during the
 linking.
 
 This all happens towards the very end of compilation. The code for this can be
-found in [`librustc_codegen_ssa::back`][ssaback] and
-[`librustc_codegen_llvm::back`][llvmback]. Sadly, this piece of code is not
+found in [`rustc_codegen_ssa::back`][ssaback] and
+[`rustc_codegen_llvm::back`][llvmback]. Sadly, this piece of code is not
 really well-separated into LLVM-dependent code; the [`rustc_codegen_ssa`][ssa]
 contains a fair amount of code specific to the LLVM backend.