solidity/test/cmdlineTests/yul_optimize_runs/input.yul

14 lines
343 B
Plaintext
Raw Normal View History

object "RunsTest1" {
code {
// Deploy the contract
2022-03-07 12:06:58 +00:00
datacopy(0, dataoffset("Runtime_deployed"), datasize("Runtime_deployed"))
return(0, datasize("Runtime_deployed"))
}
2022-03-07 12:06:58 +00:00
object "Runtime_deployed" {
code {
let funcSel := shl(224, 0xabc12345)
2021-08-17 20:50:27 +00:00
sstore(0, funcSel)
}
}
}