diff options
Diffstat (limited to 'test/reduce')
-rw-r--r-- | test/reduce/destructive.wast.txt | 4 | ||||
-rw-r--r-- | test/reduce/imports.wast.txt | 4 | ||||
-rw-r--r-- | test/reduce/memory_table.wast.txt | 10 | ||||
-rw-r--r-- | test/reduce/simple.wast.txt | 4 |
4 files changed, 11 insertions, 11 deletions
diff --git a/test/reduce/destructive.wast.txt b/test/reduce/destructive.wast.txt index 8721c051f..f9deb1a04 100644 --- a/test/reduce/destructive.wast.txt +++ b/test/reduce/destructive.wast.txt @@ -1,7 +1,7 @@ (module - (type $0 (func (param i32) (result i32))) + (type $i32_=>_i32 (func (param i32) (result i32))) (export "x" (func $0)) - (func $0 (; 0 ;) (type $0) (param $0 i32) (result i32) + (func $0 (; 0 ;) (param $0 i32) (result i32) (i32.const 100) ) ) diff --git a/test/reduce/imports.wast.txt b/test/reduce/imports.wast.txt index adfd5ff04..4dff9a003 100644 --- a/test/reduce/imports.wast.txt +++ b/test/reduce/imports.wast.txt @@ -1,7 +1,7 @@ (module - (type $0 (func (result i32))) + (type $none_=>_i32 (func (result i32))) (export "x" (func $0)) - (func $0 (; 0 ;) (type $0) (result i32) + (func $0 (; 0 ;) (result i32) (i32.const 5678) ) ) diff --git a/test/reduce/memory_table.wast.txt b/test/reduce/memory_table.wast.txt index 1665c7a4e..4e250f02a 100644 --- a/test/reduce/memory_table.wast.txt +++ b/test/reduce/memory_table.wast.txt @@ -1,14 +1,14 @@ (module - (type $0 (func (result i32))) - (type $1 (func)) + (type $none_=>_i32 (func (result i32))) + (type $none_=>_none (func)) (memory $0 256 256) (export "f1" (func $0)) (export "f2" (func $1)) (export "f4" (func $2)) - (func $0 (; 0 ;) (type $1) + (func $0 (; 0 ;) (nop) ) - (func $1 (; 1 ;) (type $0) (result i32) + (func $1 (; 1 ;) (result i32) (i32.store (i32.const 0) (i32.const 65530) @@ -17,7 +17,7 @@ (i32.const 0) ) ) - (func $2 (; 2 ;) (type $0) (result i32) + (func $2 (; 2 ;) (result i32) (i32.add (call $1) (i32.const 1234) diff --git a/test/reduce/simple.wast.txt b/test/reduce/simple.wast.txt index adfd5ff04..4dff9a003 100644 --- a/test/reduce/simple.wast.txt +++ b/test/reduce/simple.wast.txt @@ -1,7 +1,7 @@ (module - (type $0 (func (result i32))) + (type $none_=>_i32 (func (result i32))) (export "x" (func $0)) - (func $0 (; 0 ;) (type $0) (result i32) + (func $0 (; 0 ;) (result i32) (i32.const 5678) ) ) |