blob: b1a2663bf9df0c37cf9505249fe70da1b34c9589 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
function asm(x, y) {
x = +x;
y = y | 0;
var int1 = 0, int2 = 0; // do not mix the types!
var double1 = +0, double2 = +0;
int1 = (x+x)|0;
double1 = d();
int2 = (int1+2)|0;
print(int2);
double2 = double1*5;
return double2;
}
// EMSCRIPTEN_GENERATED_FUNCTIONS: ["asm", "__Z11printResultPiS_j"]
|