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
|
function asmjs_included_1() {
'use asm';
function noop(e) {
// this is crucial
e = e | 0;
}
return { noop: noop };
}
function asmjs_included_2() {
'use asm';
function noop(e) {
e = e | 0;
switch (e | 0) {
case 10:
return 10;
default:
return e | 0;
}
// this is crucial
return e | 0;
}
return { noop: noop };
}
function asmjs_removed() {
'use asm';
function noop(e) {
e = e | 0;
}
return { noop: noop };
}
console.log(asmjs_included_1().noop(3));
console.log(asmjs_included_2().noop(3));
|