mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
18 lines
360 B
Solidity
18 lines
360 B
Solidity
|
// IRGeneratorForStatements::visit(FunctionCall const& _functionCall)
|
||
|
contract C {
|
||
|
function f(uint b) public pure returns (uint x) {
|
||
|
x = b;
|
||
|
}
|
||
|
function g() public pure returns (uint x) {
|
||
|
uint8 a;
|
||
|
assembly {
|
||
|
a := 0x12345678
|
||
|
}
|
||
|
x = f(a);
|
||
|
}
|
||
|
}
|
||
|
// ====
|
||
|
// compileViaYul: true
|
||
|
// ----
|
||
|
// g() -> 0x78
|