mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Yul: Adds optimizer pass to make variable names suffix-canonical.
This commit is contained in:
committed by
Leonardo Alt
parent
c3e4c42bbd
commit
609855546e
@@ -5,9 +5,9 @@ Pretty printed source:
|
||||
object "MyContract" {
|
||||
code {
|
||||
sstore(0, caller())
|
||||
let _3 := datasize("Runtime")
|
||||
datacopy(0, dataoffset("Runtime"), _3)
|
||||
return(0, _3)
|
||||
let _1 := datasize("Runtime")
|
||||
datacopy(0, dataoffset("Runtime"), _1)
|
||||
return(0, _1)
|
||||
}
|
||||
object "Runtime" {
|
||||
code {
|
||||
|
||||
Reference in New Issue
Block a user