Skip to content

Commit 815204e

Browse files
Update compiler flow chart
1 parent 3d0409f commit 815204e

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

docs/compiler/index.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,15 @@ steps needed to compile Mew code.
99

1010
```mermaid
1111
flowchart LR;
12-
subgraph Compiler
1312
subgraph Frontend
1413
AST-->HIR
1514
HIR-->MIR
16-
MIR-->LIR
15+
MIR-..->LIR
1716
end
1817
subgraph Backend
19-
LIR-->ByteCode["Mew Byte Code"]
18+
MIR-->Interpreter
2019
LIR-. Future .->LLVM["LLVM IR"]
2120
end
22-
end
23-
ByteCode-->Interpreter
2421
LLVM-.->Executable
2522
```
2623

0 commit comments

Comments
 (0)