solidity/test/cmdlineTests/yul_optimize_runs/input.yul
2022-03-09 17:53:28 +01:00

14 lines
343 B
Plaintext

object "RunsTest1" {
code {
// Deploy the contract
datacopy(0, dataoffset("Runtime_deployed"), datasize("Runtime_deployed"))
return(0, datasize("Runtime_deployed"))
}
object "Runtime_deployed" {
code {
let funcSel := shl(224, 0xabc12345)
sstore(0, funcSel)
}
}
}