From 0dd7f6291c297c44e2bfb6d4ea3c113a295b21c5 Mon Sep 17 00:00:00 2001 From: Who? Me?! Date: Sun, 8 Mar 2020 21:19:44 -0500 Subject: [PATCH] Update src/backend/codegen.md Co-Authored-By: Yuki Okushi --- src/backend/codegen.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/codegen.md b/src/backend/codegen.md index 8b005525..5e277fc3 100644 --- a/src/backend/codegen.md +++ b/src/backend/codegen.md @@ -46,7 +46,7 @@ There are a few benefits to using LLVM: ## Running LLVM, linking, and metadata generation Once LLVM IR for all of the functions and statics, etc is built, it is time to -start running LLVM and its optimisation passes. LLVM IR is grouped into +start running LLVM and its optimization passes. LLVM IR is grouped into "modules". Multiple "modules" can be codegened at the same time to aid in multi-core utilisation. These "modules" are what we refer to as _codegen units_. These units were established way back during monomorphisation