solidity/test/libyul/yulOptimizerTests/expressionSimplifier/pop_byte_shr_func.yul
Daniel Kirchner 10618188dd Update tests.
2021-11-09 14:34:05 +01:00

18 lines
285 B
Plaintext

{
function f() -> x { mstore(0, 1337) }
mstore(0, byte(0, shr(0x8, f())))
}
// ====
// EVMVersion: >=constantinople
// ----
// step: expressionSimplifier
//
// {
// {
// pop(f())
// mstore(0, 0)
// }
// function f() -> x
// { mstore(0, 1337) }
// }