aboutsummaryrefslogtreecommitdiff
path: root/doc/Documentation.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/Documentation.md')
-rw-r--r--doc/Documentation.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/Documentation.md b/doc/Documentation.md
index f04a3a2..96cd3ef 100644
--- a/doc/Documentation.md
+++ b/doc/Documentation.md
@@ -29,7 +29,7 @@ is being called from. Which means that import index 1 is actually import index 0
@AmalReg is an alias for u8.
# Compiler flow
-(Tokenize&parse -> Resolve AST -> Generate SSA -> Generate bytecode) -> Generate program\
+(Tokenize&parse -> Resolve AST -> Generate IR -> Generate bytecode) -> Generate program\
Each step except the last is done using multiple threads in parallel and the output of each step is used
in the next step. The last step is not done in parallel because the last step is combining all bytecode
and writing it to a file, which is an IO bottlenecked operation and it won't benefit from multithreading