summaryrefslogtreecommitdiff
path: root/test/min.2asm.js
blob: e72c7caaca26915be88736b1975453435afbc55c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
function asmFunc() {
 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;
 }
 
}