blob: 2b599d99aac64b68356ed40ac594b2c724931e5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
function () {
"use asm";
var t = global.NaN, u = global.Infinity;
function big_negative() {
var temp = 0.0;
temp = +-2147483648;
temp = -2147483648.0;
temp = -21474836480.0;
temp = 0.039625;
temp = -0.039625;
}
function importedDoubles() {
var temp = 0.0;
temp = t + u + (-u) + (-t);
}
function doubleCompares(x, y) {
x = +x;
y = +y;
if (x < y) return +x;
return +y;
}
function z() {
}
function w() {
}
var FUNCTION_TABLE_a = [ z, big_negative, z, z ];
var FUNCTION_TABLE_b = [ w, w, importedDoubles, w ];
return { big_negative: big_negative };
}
|