diff options
author | Alon Zakai <alonzakai@gmail.com> | 2017-11-21 13:06:39 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-21 13:06:39 -0800 |
commit | 4da2ad6ef86ea21fa95bae10c5b74cbe16202c84 (patch) | |
tree | f73fa82427fb47725201a4547377cdc98ad7de09 /test/merge | |
parent | 6cf7343bffa3d485161e221b23dfacd9243dec68 (diff) | |
download | binaryen-4da2ad6ef86ea21fa95bae10c5b74cbe16202c84.tar.gz binaryen-4da2ad6ef86ea21fa95bae10c5b74cbe16202c84.tar.bz2 binaryen-4da2ad6ef86ea21fa95bae10c5b74cbe16202c84.zip |
name function imports using name section (#1290)
Diffstat (limited to 'test/merge')
-rw-r--r-- | test/merge/dylib.wasm.combined | 2 | ||||
-rw-r--r-- | test/merge/dylib.wasm.combined.finalized | 2 | ||||
-rw-r--r-- | test/merge/dylib.wasm.combined.finalized.opt | 2 | ||||
-rw-r--r-- | test/merge/dylib.wasm.combined.opt | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/test/merge/dylib.wasm.combined b/test/merge/dylib.wasm.combined index 90905ac0c..df76e61bf 100644 --- a/test/merge/dylib.wasm.combined +++ b/test/merge/dylib.wasm.combined @@ -7,10 +7,10 @@ (type $1$0 (func (result i32))) (type $2$0 (func)) (import "env" "memoryBase" (global $import$0 i32)) - (import "env" "_puts" (func $import$1 (param i32) (result i32))) (import "env" "memory" (memory $0 256)) (import "env" "table" (table 0 anyfunc)) (import "env" "tableBase" (global $import$4 i32)) + (import "env" "_puts" (func $import$1 (param i32) (result i32))) (import "env" "memoryBase" (global $import$0$0 i32)) (import "env" "tableBase" (global $import$4$0 i32)) (global $global$0 (mut i32) (i32.const 0)) diff --git a/test/merge/dylib.wasm.combined.finalized b/test/merge/dylib.wasm.combined.finalized index ce81b7652..a60c12ea4 100644 --- a/test/merge/dylib.wasm.combined.finalized +++ b/test/merge/dylib.wasm.combined.finalized @@ -7,10 +7,10 @@ (type $1$0 (func (result i32))) (type $2$0 (func)) (import "env" "memoryBase" (global $import$0 i32)) - (import "env" "_puts" (func $import$1 (param i32) (result i32))) (import "env" "memory" (memory $0 256)) (import "env" "table" (table 8 anyfunc)) (import "env" "tableBase" (global $import$4 i32)) + (import "env" "_puts" (func $import$1 (param i32) (result i32))) (import "env" "memoryBase" (global $import$0$0 i32)) (import "env" "tableBase" (global $import$4$0 i32)) (global $global$0 (mut i32) (i32.const 0)) diff --git a/test/merge/dylib.wasm.combined.finalized.opt b/test/merge/dylib.wasm.combined.finalized.opt index 61896fd78..37a66bea8 100644 --- a/test/merge/dylib.wasm.combined.finalized.opt +++ b/test/merge/dylib.wasm.combined.finalized.opt @@ -2,9 +2,9 @@ (type $1 (func (param i32) (result i32))) (type $2 (func (result i32))) (type $3 (func)) - (import "env" "_puts" (func $import$1 (param i32) (result i32))) (import "env" "memory" (memory $0 256)) (import "env" "table" (table 8 anyfunc)) + (import "env" "_puts" (func $import$1 (param i32) (result i32))) (global $global$0 (mut i32) (i32.const 0)) (global $global$1 (mut i32) (i32.const 0)) (global $global$2 i32 (i32.const 0)) diff --git a/test/merge/dylib.wasm.combined.opt b/test/merge/dylib.wasm.combined.opt index a2c98417b..316bb2121 100644 --- a/test/merge/dylib.wasm.combined.opt +++ b/test/merge/dylib.wasm.combined.opt @@ -3,10 +3,10 @@ (type $2 (func (result i32))) (type $3 (func)) (import "env" "memoryBase" (global $import$0 i32)) - (import "env" "_puts" (func $import$1 (param i32) (result i32))) (import "env" "memory" (memory $0 256)) (import "env" "table" (table 0 anyfunc)) (import "env" "tableBase" (global $import$4 i32)) + (import "env" "_puts" (func $import$1 (param i32) (result i32))) (import "env" "memoryBase" (global $import$0$0 i32)) (global $global$0 (mut i32) (i32.const 0)) (global $global$1 (mut i32) (i32.const 0)) |