summaryrefslogtreecommitdiff
path: root/test/reduce
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2018-01-20 09:36:59 -0800
committerGitHub <noreply@github.com>2018-01-20 09:36:59 -0800
commitb01f2bb237e086fe4ae852c6004297fa8f8b39c2 (patch)
treeb0db8dd56958dcfd38561fa2e049508600b79303 /test/reduce
parenteb7ec3286f781407f9f019b298eb241f4019234b (diff)
downloadbinaryen-b01f2bb237e086fe4ae852c6004297fa8f8b39c2.tar.gz
binaryen-b01f2bb237e086fe4ae852c6004297fa8f8b39c2.tar.bz2
binaryen-b01f2bb237e086fe4ae852c6004297fa8f8b39c2.zip
Optimize wasm-reduce (#1359)
Diffstat (limited to 'test/reduce')
-rw-r--r--test/reduce/memory_table.wast.txt32
1 files changed, 16 insertions, 16 deletions
diff --git a/test/reduce/memory_table.wast.txt b/test/reduce/memory_table.wast.txt
index c8a265b1b..a44e5b81e 100644
--- a/test/reduce/memory_table.wast.txt
+++ b/test/reduce/memory_table.wast.txt
@@ -2,28 +2,18 @@
(type $0 (func (result i32)))
(type $1 (func))
(table 481 481 anyfunc)
- (elem (i32.const 0) $1 $1 $1 $3)
+ (elem (i32.const 0) $0 $0 $0 $2)
(memory $0 256 256)
- (export "f1" (func $2))
- (export "f2" (func $3))
- (export "f4" (func $0))
+ (export "f1" (func $1))
+ (export "f2" (func $2))
+ (export "f4" (func $3))
(func $0 (; 0 ;) (type $0) (result i32)
- (i32.add
- (call_indirect (type $0)
- (i32.const 3)
- )
- (call_indirect (type $0)
- (i32.const 0)
- )
- )
- )
- (func $1 (; 1 ;) (type $0) (result i32)
(i32.const 1234)
)
- (func $2 (; 2 ;) (type $1)
+ (func $1 (; 1 ;) (type $1)
(nop)
)
- (func $3 (; 3 ;) (type $0) (result i32)
+ (func $2 (; 2 ;) (type $0) (result i32)
(i32.store
(i32.const 0)
(i32.const 65530)
@@ -32,5 +22,15 @@
(i32.const 0)
)
)
+ (func $3 (; 3 ;) (type $0) (result i32)
+ (i32.add
+ (call_indirect (type $0)
+ (i32.const 3)
+ )
+ (call_indirect (type $0)
+ (i32.const 0)
+ )
+ )
+ )
)