solidity/test/cmdlineTests/yul_function_name_clashes/output

47 lines
666 B
Plaintext
Raw Normal View History

======= yul_function_name_clashes/input.yul (EVM) =======
Pretty printed source:
object "object" {
code {
{
2023-05-16 09:40:04 +00:00
let a
let b
a := z()
2023-05-16 09:40:04 +00:00
b := z_1()
sstore(a, b)
}
2023-05-16 09:40:04 +00:00
function z() -> y
{ y := calldataload(0) }
function z_1() -> y
{ y := calldataload(0x20) }
}
}
Binary representation:
2023-05-16 09:40:04 +00:00
6005600f565b600b6014565b9055005b5f3590565b6020359056
Text representation:
2023-05-16 09:40:04 +00:00
tag_3
tag_1
jump // in
tag_3:
tag_4
tag_2
jump // in
tag_4:
swap1
sstore
stop
tag_1:
0x00
calldataload
swap1
jump // out
tag_2:
0x20
calldataload
swap1
jump // out