Diff of /c2iec.js [ebd1a4] .. [c6a232]  Maximize  Restore

Switch to unified view

a/c2iec.js b/c2iec.js
...
...
1287
  Module['HEAPF32'] = HEAPF32 = new Float32Array(buf);
1287
  Module['HEAPF32'] = HEAPF32 = new Float32Array(buf);
1288
  Module['HEAPF64'] = HEAPF64 = new Float64Array(buf);
1288
  Module['HEAPF64'] = HEAPF64 = new Float64Array(buf);
1289
}
1289
}
1290
1290
1291
var STATIC_BASE = 1024,
1291
var STATIC_BASE = 1024,
1292
    STACK_BASE = 6013552,
1292
    STACK_BASE = 6013568,
1293
    STACKTOP = STACK_BASE,
1293
    STACKTOP = STACK_BASE,
1294
    STACK_MAX = 770672,
1294
    STACK_MAX = 770688,
1295
    DYNAMIC_BASE = 6013552,
1295
    DYNAMIC_BASE = 6013568,
1296
    DYNAMICTOP_PTR = 770512;
1296
    DYNAMICTOP_PTR = 770528;
1297
1297
1298
assert(STACK_BASE % 16 === 0, 'stack must start aligned');
1298
assert(STACK_BASE % 16 === 0, 'stack must start aligned');
1299
assert(DYNAMIC_BASE % 16 === 0, 'heap must start aligned');
1299
assert(DYNAMIC_BASE % 16 === 0, 'heap must start aligned');
1300
1300
1301
1301
...
...
1852
};
1852
};
1853
1853
1854
1854
1855
1855
1856
1856
1857
// STATICTOP = STATIC_BASE + 769648;
1857
// STATICTOP = STATIC_BASE + 769664;
1858
/* global initializers */  __ATINIT__.push({ func: function() { ___wasm_call_ctors() } });
1858
/* global initializers */  __ATINIT__.push({ func: function() { ___wasm_call_ctors() } });
1859
1859
1860
1860
1861
1861
1862
1862
...
...
1909
  function ___handle_stack_overflow() {
1909
  function ___handle_stack_overflow() {
1910
      abort('stack overflow')
1910
      abort('stack overflow')
1911
    }
1911
    }
1912
1912
1913
  function _emscripten_get_sbrk_ptr() {
1913
  function _emscripten_get_sbrk_ptr() {
1914
      return 770512;
1914
      return 770528;
1915
    }
1915
    }
1916
1916
1917
  function _emscripten_memcpy_big(dest, src, num) {
1917
  function _emscripten_memcpy_big(dest, src, num) {
1918
      HEAPU8.copyWithin(dest, src, src + num);
1918
      HEAPU8.copyWithin(dest, src, src + num);
1919
    }
1919
    }