From 815204ef228de0849453a580c4d689371a31adba Mon Sep 17 00:00:00 2001 From: Patrik Svensson Date: Tue, 24 Dec 2024 12:20:09 +0100 Subject: [PATCH] Update compiler flow chart --- docs/compiler/index.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/docs/compiler/index.md b/docs/compiler/index.md index 05a29f2..2691044 100644 --- a/docs/compiler/index.md +++ b/docs/compiler/index.md @@ -9,18 +9,15 @@ steps needed to compile Mew code. ```mermaid flowchart LR; - subgraph Compiler subgraph Frontend AST-->HIR HIR-->MIR - MIR-->LIR + MIR-..->LIR end subgraph Backend - LIR-->ByteCode["Mew Byte Code"] + MIR-->Interpreter LIR-. Future .->LLVM["LLVM IR"] end - end - ByteCode-->Interpreter LLVM-.->Executable ```