Update src/backend/codegen.md

Co-Authored-By: Yuki Okushi <huyuumi.dev@gmail.com>
This commit is contained in:
Who? Me?! 2020-03-08 21:19:44 -05:00
parent da7894aa29
commit 0dd7f6291c
1 changed files with 1 additions and 1 deletions

View File

@ -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