From 07eaddb57d7c49bd5cff013c7f9fa097d4e32c17 Mon Sep 17 00:00:00 2001 From: Yuki Okushi Date: Wed, 22 Jul 2020 19:18:04 +0900 Subject: [PATCH] Fix links for cranelift --- src/backend/backend-agnostic.md | 2 +- src/backend/codegen.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/backend-agnostic.md b/src/backend/backend-agnostic.md index d0984feec..07914b847 100644 --- a/src/backend/backend-agnostic.md +++ b/src/backend/backend-agnostic.md @@ -4,7 +4,7 @@ In the future, it would be nice to allow other codegen backends (e.g. [Cranelift]). To this end, `librustc_codegen_ssa` provides an abstract interface for all backends to implement. -[Cranelift]: https://github.com/bytecodealliance/wasmtime/tree/master/cranelift +[Cranelift]: https://github.com/bytecodealliance/wasmtime/tree/HEAD/cranelift > The following is a copy/paste of a README from the rust-lang/rust repo. > Please submit a PR if it needs updating. diff --git a/src/backend/codegen.md b/src/backend/codegen.md index d7bad9cfb..5db9b2b05 100644 --- a/src/backend/codegen.md +++ b/src/backend/codegen.md @@ -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].