mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
14 lines
241 B
Plaintext
14 lines
241 B
Plaintext
{
|
|
let x := 7
|
|
mstore(0, signextend(50, x))
|
|
let y := 255
|
|
mstore(1, signextend(0, y))
|
|
}
|
|
// ----
|
|
// step: fullSimplify
|
|
//
|
|
// {
|
|
// mstore(0, 7)
|
|
// mstore(1, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
|
|
// }
|