2021-11-16 18:47:37 +00:00
|
|
|
contract receiver {
|
|
|
|
uint public received;
|
|
|
|
function recv(uint x) public { received += x + 1; }
|
|
|
|
fallback() external { received = 0x80; }
|
|
|
|
}
|
|
|
|
contract sender {
|
|
|
|
constructor() { rec = new receiver(); }
|
|
|
|
fallback() external { savedData1 = savedData2 = msg.data; }
|
|
|
|
function forward(bool selector) public returns (bool) {
|
|
|
|
if (selector) { address(rec).call(savedData1); delete savedData1; }
|
|
|
|
else { address(rec).call(savedData2); delete savedData2; }
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
function val() public returns (uint) { return rec.received(); }
|
|
|
|
receiver rec;
|
|
|
|
bytes savedData1;
|
|
|
|
bytes savedData2;
|
|
|
|
}
|
|
|
|
// ====
|
|
|
|
// compileToEwasm: false
|
|
|
|
// compileViaYul: also
|
|
|
|
// ----
|
|
|
|
// (): 7 ->
|
2022-02-15 11:20:28 +00:00
|
|
|
// gas irOptimized: 110954
|
2022-01-14 12:37:40 +00:00
|
|
|
// gas legacy: 111071
|
|
|
|
// gas legacyOptimized: 111016
|
2021-11-16 18:47:37 +00:00
|
|
|
// val() -> 0
|
|
|
|
// forward(bool): true -> true
|
|
|
|
// val() -> 0x80
|
|
|
|
// forward(bool): false -> true
|
|
|
|
// val() -> 0x80
|
|
|
|
// forward(bool): true -> true
|
|
|
|
// val() -> 0x80
|