Merge pull request #5855 from ethereum/cp

[Yul] Variable Name Canonicalization
This commit is contained in:
chriseth
2019-03-04 17:58:45 +01:00
committed by GitHub
19 changed files with 536 additions and 211 deletions
+3 -3
View File
@@ -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 {