From ce08bcc1e6c2c2975cb5b526f17498a78d3e6a0a Mon Sep 17 00:00:00 2001 From: Tshepang Lekhonkhobe Date: Mon, 30 Mar 2020 18:55:36 +0200 Subject: [PATCH] point to new Cranelift home --- src/backend/backend-agnostic.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/backend-agnostic.md b/src/backend/backend-agnostic.md index 0c501a2c..209df0af 100644 --- a/src/backend/backend-agnostic.md +++ b/src/backend/backend-agnostic.md @@ -1,10 +1,10 @@ # Backend Agnostic Codegen In the future, it would be nice to allow other codegen backends (e.g. -[Cranelift][cranelift]). To this end, `librustc_codegen_ssa` provides an +[Cranelift]). To this end, `librustc_codegen_ssa` provides an abstract interface for all backends to implenent. -[cranelift]: https://github.com/CraneStation/cranelift +[Cranelift]: https://github.com/bytecodealliance/wasmtime/tree/master/cranelift > The following is a copy/paste of a README from the rust-lang/rust repo. > Please submit a PR if it needs updating.