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

11 lines
195 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)
}
// ----
// expressionSimplifier
// {
// let a := div(keccak256(0, 0), 0)
// }