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