summaryrefslogtreecommitdiff
path: root/test/reduce
diff options
context:
space:
mode:
authorThomas Lively <7121787+tlively@users.noreply.github.com>2020-04-09 11:41:40 -0700
committerGitHub <noreply@github.com>2020-04-09 11:41:40 -0700
commit9c75b8f8ef58347f2fab44463f9a65eb37212742 (patch)
tree8660dbae4ade8d07c7dc62bc76da0da13e35dd73 /test/reduce
parentb3d79f406ab80d5f36995e03385df3903e52f46e (diff)
downloadbinaryen-9c75b8f8ef58347f2fab44463f9a65eb37212742.tar.gz
binaryen-9c75b8f8ef58347f2fab44463f9a65eb37212742.tar.bz2
binaryen-9c75b8f8ef58347f2fab44463f9a65eb37212742.zip
Remove function index printing (#2742)
`BinaryIndexes` was only used in two places (Print.cpp and wasm-binary.h), so it didn't seem to be a great fit for module-utils.h. This change moves it to wasm-binary.h and removes its usage in Print.cpp. This means that function indexes are no longer printed, but those were of limited utility and were the source of annoying noise when updating tests, anyway.
Diffstat (limited to 'test/reduce')
-rw-r--r--test/reduce/destructive.wast.txt2
-rw-r--r--test/reduce/imports.wast.txt2
-rw-r--r--test/reduce/memory_table.wast.txt6
-rw-r--r--test/reduce/simple.wast.txt2
4 files changed, 6 insertions, 6 deletions
diff --git a/test/reduce/destructive.wast.txt b/test/reduce/destructive.wast.txt
index f9deb1a04..c05c72d78 100644
--- a/test/reduce/destructive.wast.txt
+++ b/test/reduce/destructive.wast.txt
@@ -1,7 +1,7 @@
(module
(type $i32_=>_i32 (func (param i32) (result i32)))
(export "x" (func $0))
- (func $0 (; 0 ;) (param $0 i32) (result i32)
+ (func $0 (param $0 i32) (result i32)
(i32.const 100)
)
)
diff --git a/test/reduce/imports.wast.txt b/test/reduce/imports.wast.txt
index 4dff9a003..1c2a8c63f 100644
--- a/test/reduce/imports.wast.txt
+++ b/test/reduce/imports.wast.txt
@@ -1,7 +1,7 @@
(module
(type $none_=>_i32 (func (result i32)))
(export "x" (func $0))
- (func $0 (; 0 ;) (result i32)
+ (func $0 (result i32)
(i32.const 5678)
)
)
diff --git a/test/reduce/memory_table.wast.txt b/test/reduce/memory_table.wast.txt
index 4e250f02a..fe9e82072 100644
--- a/test/reduce/memory_table.wast.txt
+++ b/test/reduce/memory_table.wast.txt
@@ -5,10 +5,10 @@
(export "f1" (func $0))
(export "f2" (func $1))
(export "f4" (func $2))
- (func $0 (; 0 ;)
+ (func $0
(nop)
)
- (func $1 (; 1 ;) (result i32)
+ (func $1 (result i32)
(i32.store
(i32.const 0)
(i32.const 65530)
@@ -17,7 +17,7 @@
(i32.const 0)
)
)
- (func $2 (; 2 ;) (result i32)
+ (func $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 4dff9a003..1c2a8c63f 100644
--- a/test/reduce/simple.wast.txt
+++ b/test/reduce/simple.wast.txt
@@ -1,7 +1,7 @@
(module
(type $none_=>_i32 (func (result i32)))
(export "x" (func $0))
- (func $0 (; 0 ;) (result i32)
+ (func $0 (result i32)
(i32.const 5678)
)
)