Skip to content

Instantly share code, notes, and snippets.

@Saw-mon-and-Natalie
Created August 5, 2022 01:41
Show Gist options
  • Save Saw-mon-and-Natalie/b2994bfde69858bfc5da9bad31356f83 to your computer and use it in GitHub Desktop.
Save Saw-mon-and-Natalie/b2994bfde69858bfc5da9bad31356f83 to your computer and use it in GitHub Desktop.
// SPDX-License-Identifier: MIT
pragma solidity 0.8.15;
contract Casting {
function cast(uint256 x) public payable returns(address){
return address(uint160(x));
}
}
// SPDX-License-Identifier: MIT
pragma solidity 0.8.15;
contract Casting {
function cast(uint256 x) public payable returns(address y){
assembly {
y := and(x, 0xffffffffffffffffffffffffffffffffffffffff)
}
}
}

Run these commands to compare the compiled bytecodes:

solc --bin-runtime --via-ir --optimize --optimize-runs 999999 --metadata-hash none src/Casting.sol
solc --bin-runtime --via-ir --optimize --optimize-runs 999999 --metadata-hash none src/Casting2.sol
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment