blob: d7d1c5e7dbdff644332be0847181b6d0ecec439e [file] [log] [blame] [edit]
'use strict';
require('../common');
function AsmModule() {
'use asm';
function add(a, b) {
a = a | 0;
b = b | 0;
// Should be `return (a + b) | 0;`
return a + b;
}
return { add: add };
}
AsmModule();