Skip to content

Commit 2ed09da

Browse files
Fix link
1 parent f6d58a9 commit 2ed09da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

optvm/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ A VM / Interpreter is provided that can run the generated code.
4343
* [EnterSSA](src/main/java/com/compilerprogramming/ezlang/compiler/EnterSSA.java) - Transforms into SSA, using [algorithm by Preston Briggs](https://dl.acm.org/doi/10.5555/295545.295551). This is the traditional method of constructing
4444
SSA Form using Dominator Trees. The input to this transformation is regular IR, output is SSA IR.
4545
* Incremental SSA - This method generate SSA IR directly from the AST, using [Braun's algorithm](https://dl.acm.org/doi/10.1007/978-3-642-37051-9_6) - this is integrated into the
46-
[compiler]((src/main/java/com/compilerprogramming/ezlang/compiler/CompiledFunction.java)) itself and can be enabled using an option.
46+
[compiler](src/main/java/com/compilerprogramming/ezlang/compiler/CompiledFunction.java) itself and can be enabled using an option.
4747
* [ExitSSA](src/main/java/com/compilerprogramming/ezlang/compiler/ExitSSA.java) - Exits SSA form, using algorithm by Preston Briggs.
4848

4949
## Optimizations on SSA Form

0 commit comments

Comments
 (0)