blob: c8d52f3e097ec4da78b8e0494f7fe834379c3a08 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
function () {
"use asm";
function big_negative() {
var temp = 0.0;
temp = +-2147483648;
temp = -2147483648.0;
temp = -21474836480.0;
}
return { big_negative: big_negative };
}
|