2019-04-11 10:58:27 +00:00
|
|
|
contract C {
|
|
|
|
function f() public pure returns (uint32 x) {
|
|
|
|
uint32 a;
|
|
|
|
uint32 b;
|
|
|
|
uint32 c;
|
|
|
|
assembly {
|
|
|
|
a := 1
|
|
|
|
b := 2
|
|
|
|
c := 3
|
|
|
|
}
|
|
|
|
x = a + b + c;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ====
|
2020-11-21 13:54:16 +00:00
|
|
|
// compileToEwasm: also
|
2019-04-11 10:58:27 +00:00
|
|
|
// ----
|
|
|
|
// f() -> 6
|