diff options
author | chriseth <chris@ethereum.org> | 2018-12-14 00:30:26 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-14 00:30:26 +0800 |
commit | 8d3617b7c522d74bcc36a1fbc1eb7c16bf96ad4d (patch) | |
tree | b1869bc693de9d3f6ccd9ec734a5d9746fe5cd6d /test/libyul/yulOptimizerTests/fullInliner/double_inline.yul | |
parent | 633dd44576e267f4728b86ec69a9cc56517a1f89 (diff) | |
parent | bc22a25a603296a0f40a4df75287b6d2f51ed4ac (diff) | |
download | dexon-solidity-8d3617b7c522d74bcc36a1fbc1eb7c16bf96ad4d.tar.gz dexon-solidity-8d3617b7c522d74bcc36a1fbc1eb7c16bf96ad4d.tar.zst dexon-solidity-8d3617b7c522d74bcc36a1fbc1eb7c16bf96ad4d.zip |
Merge pull request #5655 from ethereum/removeUnassignedVarDefs
Add variable declaration initializer.
Diffstat (limited to 'test/libyul/yulOptimizerTests/fullInliner/double_inline.yul')
-rw-r--r-- | test/libyul/yulOptimizerTests/fullInliner/double_inline.yul | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/libyul/yulOptimizerTests/fullInliner/double_inline.yul b/test/libyul/yulOptimizerTests/fullInliner/double_inline.yul index ee7f5bf5..b3f51593 100644 --- a/test/libyul/yulOptimizerTests/fullInliner/double_inline.yul +++ b/test/libyul/yulOptimizerTests/fullInliner/double_inline.yul @@ -9,14 +9,14 @@ // { // { // let f_a := calldataload(0) -// let f_b -// let f_c +// let f_b := 0 +// let f_c := 0 // f_b := sload(mload(f_a)) // f_c := 3 // let b3 := f_b // let f_a_2 := f_c -// let f_b_3 -// let f_c_4 +// let f_b_3 := 0 +// let f_c_4 := 0 // f_b_3 := sload(mload(f_a_2)) // f_c_4 := 3 // let b4 := f_b_3 |