From 2ef2974969558438e50992fb5eb5a0c4c172e7f3 Mon Sep 17 00:00:00 2001 From: Kavish <100059563+Kxvish@users.noreply.github.com> Date: Thu, 28 Jul 2022 15:41:03 -0700 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 289a630fe..f30849836 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ branch. This is a new one uploaded in September 2020.) chibicc is yet another small C compiler that implements most C11 -features. Even though it still probably falls into the "toy compilers" +features. Even though it probably falls into the "toy compilers" category just like other small compilers do, chibicc can compile several real-world programs, including [Git](https://git-scm.com/), [SQLite](https://sqlite.org), @@ -81,7 +81,7 @@ left out. chibicc outputs a simple but nice error message when it finds an error in source code. -There's no optimization pass. chibicc emits terrible code which is probably +There's no optimization pass, chibicc emits terrible code which is probably twice or more slower than GCC's output. I have a plan to add an optimization pass once the frontend is done.