From e2567e240d98d89d07709edcfb9b91b095f40314 Mon Sep 17 00:00:00 2001 From: Eduardo Canellas de Oliveira <34381457+eduardocanellas@users.noreply.github.com> Date: Thu, 14 Jan 2021 22:13:56 -0300 Subject: [PATCH] fix typo --- index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.md b/index.md index 49f6696..9f8aa80 100644 --- a/index.md +++ b/index.md @@ -4,7 +4,7 @@ This is a full alternative implementation of the Rust language on top of GCC wit As this is a front-end project, the compiler will gain full access to all of GCCs internal middle-end optimization passes which are distinct from LLVM. For example, users of this compiler can expect to use the familiar -O2 flags to tune GCC’s optimizer. Going forward, we will be happy to see more LLVM vs GCC graphs in respect to compilation speed, resulting code size and performance. -The project is still in an early phase with the goal to compile the offical rust test suite. There are no immediate plans for a borrow checker as this is not required to compile rust code and is the last pass in the RustC compiler. This can be handled as a sperate project when we get to that point. +The project is still in an early phase with the goal to compile the official rust test suite. There are no immediate plans for a borrow checker as this is not required to compile rust code and is the last pass in the RustC compiler. This can be handled as a sperate project when we get to that point. You can find compiler status reports over on: [https://github.com/Rust-GCC/Reporting](https://github.com/Rust-GCC/Reporting) and [https://thephilbert.io/](https://thephilbert.io/)