summaryrefslogtreecommitdiff
path: root/test/hello_world.2asm.js
blob: 2c67f05ff1b236906731cd4bd5c18bd6a654b751 (plain)
1
2
3
4
5
6
7
8
9
10
function asmFunc() {
 "use asm";
 function add(x, y) {
  x = x | 0;
  y = y | 0;
  return x + y | 0;
 }
 
}