blob: 4b706eb26e4e8b557ffc877a3244194bea92c1c1 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
function () {
"use asm";
var t = global.NaN, u = global.Infinity;
var Int = 0;
var Double = 0.0;
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);
if (Int > 0) return -3.4;
if (Double > 0.0) return 5.6;
return 1.2;
}
function doubleCompares(x, y) {
x = +x;
y = +y;
var t = +0;
var Int = 0.0, Double = 0; // confusing with globals
if (x > 0.0) return 1.2;
if (Int > 0.0) return -3.4;
if (Double > 0) return 5.6;
if (x < y) return +x;
return +y;
}
function intOps() {
var x = 0;
return !x;
}
function conversions() {
var i = 0, d = 0.0;
i = ~~d;
d = +(i | 0);
d = +(i >>> 0);
}
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 };
}
|