From 4e8110ceb25cc1cdc990396f8cadf5ae08e6ee69 Mon Sep 17 00:00:00 2001 From: Tshepang Mbambo Date: Fri, 17 Feb 2023 09:24:03 +0200 Subject: [PATCH] address review comment See - https://github.com/rust-lang/rustc-dev-guide/pull/1606#discussion_r1109298849 - https://github.com/rust-lang/rustc-dev-guide/pull/1606#discussion_r1109298280 --- src/backend/backend-agnostic.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/backend/backend-agnostic.md b/src/backend/backend-agnostic.md index 3f25fe03..ef945c4d 100644 --- a/src/backend/backend-agnostic.md +++ b/src/backend/backend-agnostic.md @@ -4,9 +4,10 @@ [`rustc_codegen_ssa`] provides an abstract interface for all backends to implement, -to allow other codegen backends (e.g. [Cranelift]). +namely LLVM, [Cranelift], and [GCC]. -[Cranelift]: https://github.com/bytecodealliance/wasmtime/tree/HEAD/cranelift +[Cranelift]: https://github.com/bjorn3/rustc_codegen_cranelift +[GCC]: https://github.com/rust-lang/rustc_codegen_gcc [`rustc_codegen_ssa`]: https://doc.rust-lang.org/stable/nightly-rustc/rustc_codegen_ssa/index.html # Refactoring of `rustc_codegen_llvm`