Failing test.

This commit is contained in:
chriseth 2022-03-17 12:53:52 +01:00
parent 75ac1f4e0d
commit 3c737ea8dc

View File

@ -0,0 +1,22 @@
{
let x := 0
for {} sload(0) { let t := 0 } {
x := 0
if calldataload(0) { x := 2 continue }
}
}
// ----
// step: commonSubexpressionEliminator
//
// {
// let x := 0
// for { } sload(0) { let t := 0 }
// {
// x := 0
// if calldataload(x)
// {
// x := 2
// continue
// }
// }
// }