summaryrefslogtreecommitdiff
path: root/test/min.2asm.js
blob: 5574b5a25cda29a29af6dc2082b8965341f95024 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
function asmFunc() {
 "use asm";
 function floats(f) {
  f = Math_fround(f);
  var t = Math_fround(0);
  return Math_fround(t + f);
 }
 
 function neg(k, p) {
  k = k | 0;
  p = p | 0;
  var n = Math_fround(0), wasm2asm_f32$1 = Math_fround(0), wasm2asm_f32$0 = Math_fround(0);
  HEAP32[k >> 2] = p;
  wasm2asm_f32$1 = HEAPF32[k >> 2];
  wasm2asm_f32$0 = Math_fround(-wasm2asm_f32$1);
  n = wasm2asm_f32$0;
 }
 
}