Update binaryen to latest nightly

This commit is contained in:
dcodeIO
2018-01-20 05:27:54 +01:00
parent 64c939fdc4
commit b77646df6e
6 changed files with 60 additions and 91 deletions

View File

@ -326,8 +326,9 @@ class Control extends BlockHeader { // Empty lists point here, indicating free
if (this.blocks(fl, sl) == block) {
this.blocks_set(fl, sl, next);
if (next == this) {
this.sl_bitmap_set(fl, this.sl_bitmap(fl) & ~(1 << sl));
if (!this.sl_bitmap(fl)) {
var sl_bitmap = this.sl_bitmap(fl) & ~(1 << sl);
this.sl_bitmap_set(fl, sl_bitmap);
if (!sl_bitmap) {
this.fl_bitmap &= ~(1 << fl);
}
}