mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Tests.
This commit is contained in:
parent
1e50fc61e4
commit
92c3511f47
@ -0,0 +1,26 @@
|
||||
{
|
||||
let i := 0
|
||||
for {} lt(i, 2) { i := add(i, 1) }
|
||||
{
|
||||
let x
|
||||
x := 1337
|
||||
if lt(i,1) {
|
||||
x := 42
|
||||
break
|
||||
}
|
||||
mstore(0, x)
|
||||
}
|
||||
}
|
||||
// ====
|
||||
// step: redundantAssignEliminator
|
||||
// ----
|
||||
// {
|
||||
// let i := 0
|
||||
// for { } lt(i, 2) { i := add(i, 1) }
|
||||
// {
|
||||
// let x
|
||||
// x := 1337
|
||||
// if lt(i, 1) { break }
|
||||
// mstore(0, x)
|
||||
// }
|
||||
// }
|
@ -0,0 +1,27 @@
|
||||
{
|
||||
let i := 0
|
||||
for {} lt(i, 2) { i := add(i, 1) }
|
||||
{
|
||||
let x
|
||||
x := 1337
|
||||
if lt(i,1) {
|
||||
x := 42
|
||||
continue
|
||||
}
|
||||
mstore(0, x)
|
||||
}
|
||||
}
|
||||
|
||||
// ====
|
||||
// step: redundantAssignEliminator
|
||||
// ----
|
||||
// {
|
||||
// let i := 0
|
||||
// for { } lt(i, 2) { i := add(i, 1) }
|
||||
// {
|
||||
// let x
|
||||
// x := 1337
|
||||
// if lt(i, 1) { continue }
|
||||
// mstore(0, x)
|
||||
// }
|
||||
// }
|
Loading…
Reference in New Issue
Block a user