Update Binaryen to latest and rebuild dist files

This commit is contained in:
dcode
2019-02-05 17:12:10 +01:00
parent c95c0f5fbe
commit cd1cfe6957
194 changed files with 68272 additions and 68272 deletions

View File

@@ -2,7 +2,7 @@
(type $iii (func (param i32 i32) (result i32)))
(type $v (func))
(memory $0 0)
(table $0 1 anyfunc)
(table $0 1 funcref)
(elem (i32.const 0) $null)
(global $export/a i32 (i32.const 1))
(global $export/b i32 (i32.const 2))
@@ -12,46 +12,46 @@
(export "table" (table $0))
(start $start)
(func $export/add (; 0 ;) (type $iii) (param $0 i32) (param $1 i32) (result i32)
get_local $0
get_local $1
local.get $0
local.get $1
i32.add
)
(func $export/sub (; 1 ;) (type $iii) (param $0 i32) (param $1 i32) (result i32)
get_local $0
get_local $1
local.get $0
local.get $1
i32.sub
)
(func $export/mul (; 2 ;) (type $iii) (param $0 i32) (param $1 i32) (result i32)
get_local $0
get_local $1
local.get $0
local.get $1
i32.mul
)
(func $export/ns.two (; 3 ;) (type $v)
nop
)
(func $start (; 4 ;) (type $v)
get_global $export/a
get_global $export/b
global.get $export/a
global.get $export/b
call $export/add
get_global $export/b
get_global $export/c
global.get $export/b
global.get $export/c
call $export/sub
i32.add
get_global $export/c
get_global $export/a
global.get $export/c
global.get $export/a
call $export/mul
i32.add
drop
call $export/ns.two
get_global $export/a
get_global $export/b
global.get $export/a
global.get $export/b
call $export/add
get_global $export/b
get_global $export/c
global.get $export/b
global.get $export/c
call $export/sub
i32.add
get_global $export/c
get_global $export/a
global.get $export/c
global.get $export/a
call $export/mul
i32.add
drop