diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2018-06-19 05:26:31 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2018-06-26 06:52:27 +0800 |
commit | 8fa8b2d08ee09f58fe94a11b7101a9a6873c622e (patch) | |
tree | da2890e7d87ad9cd11d03ae9c3cdd35ce148fc42 /libjulia/optimiser/README.md | |
parent | 91db46b12867c48de8539b02fccd5fc06cf5d198 (diff) | |
download | dexon-solidity-8fa8b2d08ee09f58fe94a11b7101a9a6873c622e.tar dexon-solidity-8fa8b2d08ee09f58fe94a11b7101a9a6873c622e.tar.gz dexon-solidity-8fa8b2d08ee09f58fe94a11b7101a9a6873c622e.tar.bz2 dexon-solidity-8fa8b2d08ee09f58fe94a11b7101a9a6873c622e.tar.lz dexon-solidity-8fa8b2d08ee09f58fe94a11b7101a9a6873c622e.tar.xz dexon-solidity-8fa8b2d08ee09f58fe94a11b7101a9a6873c622e.tar.zst dexon-solidity-8fa8b2d08ee09f58fe94a11b7101a9a6873c622e.zip |
Rename Julia to Yul in comments
Diffstat (limited to 'libjulia/optimiser/README.md')
-rw-r--r-- | libjulia/optimiser/README.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libjulia/optimiser/README.md b/libjulia/optimiser/README.md index 1b000294..b1ce8931 100644 --- a/libjulia/optimiser/README.md +++ b/libjulia/optimiser/README.md @@ -1,6 +1,6 @@ -## IULIA Optimiser +## Yul Optimiser -The iulia optimiser consists of several stages and components that all transform +The Yul optimiser consists of several stages and components that all transform the AST in a semantically equivalent way. The goal is to end up either with code that is shorter or at least only marginally longer but will allow further optimisation steps. @@ -81,7 +81,7 @@ a loop or conditional, the first one is not inside), the first assignment is rem ## Expression Simplifier -This step can only be applied for the EVM-flavoured dialect of iulia. It applies +This step can only be applied for the EVM-flavoured dialect of Yul. It applies simple rules like ``x + 0 == x`` to simplify expressions. ## Ineffective Statement Remover |