summaryrefslogtreecommitdiff
path: root/test/example/relooper-fuzz.txt
diff options
context:
space:
mode:
authorDerek Schuff <dschuff@chromium.org>2016-10-07 10:57:50 -0700
committerGitHub <noreply@github.com>2016-10-07 10:57:50 -0700
commitcbeb4c9f9ba7c8f50fcb938ef668842bbd5dacb4 (patch)
tree71af10f36b62851530c686d47a361e108f3316e3 /test/example/relooper-fuzz.txt
parentcaf0a3db20bbc03d2261b2c5a112bc0eddd3ca73 (diff)
downloadbinaryen-cbeb4c9f9ba7c8f50fcb938ef668842bbd5dacb4.tar.gz
binaryen-cbeb4c9f9ba7c8f50fcb938ef668842bbd5dacb4.tar.bz2
binaryen-cbeb4c9f9ba7c8f50fcb938ef668842bbd5dacb4.zip
Change print order of top-level module components (#751)
In wast files, the spec and WABT require imports to appear before any non-import definitions (see also https://github.com/WebAssembly/wabt/issues/152). This patch re-orders visitModule in the wast printer to meet this requirement, and more or less match the order of the binary sections. Also remove extraneous whitespace around table definitions.
Diffstat (limited to 'test/example/relooper-fuzz.txt')
-rw-r--r--test/example/relooper-fuzz.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/example/relooper-fuzz.txt b/test/example/relooper-fuzz.txt
index 5a631c41c..f0ddfdc19 100644
--- a/test/example/relooper-fuzz.txt
+++ b/test/example/relooper-fuzz.txt
@@ -1,11 +1,11 @@
(module
- (memory $0 1 1)
- (start $main)
(type $i (func (result i32)))
(type $v (func))
(type $vi (func (param i32)))
(import "spectest" "print" (func $print (param i32)))
+ (memory $0 1 1)
(export "mem" (memory $0))
+ (start $main)
(func $check (type $i) (result i32)
(if
(i32.eq
@@ -292,13 +292,13 @@
)
)
(module
- (memory $0 1 1)
- (start $main)
(type $i (func (result i32)))
(type $v (func))
(type $vi (func (param i32)))
(import "spectest" "print" (func $print (param i32)))
+ (memory $0 1 1)
(export "mem" (memory $0))
+ (start $main)
(func $check (type $i) (result i32)
(if
(i32.eq