solidity/test/libyul/yulOptimizerTests/expressionSimplifier/not_applied_removes_non_constant_and_not_movable.yul

12 lines
209 B
Plaintext
Raw Normal View History

2018-10-11 16:35:13 +00:00
// The first argument of div is not constant.
// keccak256 is not movable.
{
let a := div(keccak256(0, 0), 0)
}
2019-04-01 14:33:46 +00:00
// ====
// step: expressionSimplifier
2018-10-11 16:35:13 +00:00
// ----
// {
// let a := div(keccak256(0, 0), 0)
// }