solidity/test/libyul/yulOptimizerTests/fullSuite/name_cleaner_reserved.yul
Nikola Matic fdc6699159 Rematerialize zero literals with default cleanup sequence
Add unused pruner step to the end of the default cleanup sequence
2023-09-04 15:40:33 +02:00

35 lines
717 B
Plaintext

{
// This function name can be shortened, the other cannot.
function nonmstore_(x) {
if calldataload(0) { nonmstore_(x) }
sstore(10, calldataload(2))
}
function mstore_(x) -> y {
if calldataload(0) { let t3_3_ := mstore_(x) }
y := 8
sstore(y, calldataload(y))
}
let t2_ := mstore_(7)
nonmstore_(70)
}
// ----
// step: fullSuite
//
// {
// {
// pop(mstore_(7))
// nonmstore(70)
// }
// function nonmstore(x)
// {
// if calldataload(0) { nonmstore(x) }
// sstore(10, calldataload(2))
// }
// function mstore_(x) -> y
// {
// if calldataload(0) { pop(mstore_(x)) }
// y := 8
// sstore(8, calldataload(8))
// }
// }