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 $i (func (result i32)))
(type $v (func))
(memory $0 0)
(table $0 1 anyfunc)
(table $0 1 funcref)
(elem (i32.const 0) $null)
(global $namespace/Outer.Inner.aVar (mut i32) (i32.const 0))
(global $namespace/Outer.Inner.anEnum.ONE i32 (i32.const 1))
@ -13,17 +13,17 @@
(export "table" (table $0))
(start $start)
(func $namespace/Outer.Inner.aFunc (; 0 ;) (type $i) (result i32)
get_global $namespace/Outer.Inner.aVar
global.get $namespace/Outer.Inner.aVar
)
(func $namespace/Joined.anotherFunc (; 1 ;) (type $i) (result i32)
get_global $namespace/Joined.THREE
global.get $namespace/Joined.THREE
)
(func $start (; 2 ;) (type $v)
get_global $namespace/Outer.Inner.aVar
global.get $namespace/Outer.Inner.aVar
drop
call $namespace/Outer.Inner.aFunc
drop
get_global $namespace/Outer.Inner.anEnum.ONE
global.get $namespace/Outer.Inner.anEnum.ONE
drop
call $namespace/Joined.anotherFunc
drop