summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2015-11-05 16:13:01 -0800
committerAlon Zakai <alonzakai@gmail.com>2015-11-05 16:13:01 -0800
commit6570d8cafc74e2ed6cf877f9b4a12c40ceac5e52 (patch)
tree3e183116517a02702f28e53f3d61b60ab37304dc /test
parentb3ee570f3f513e580958e020806df5b014c8b7c0 (diff)
downloadbinaryen-6570d8cafc74e2ed6cf877f9b4a12c40ceac5e52.tar.gz
binaryen-6570d8cafc74e2ed6cf877f9b4a12c40ceac5e52.tar.bz2
binaryen-6570d8cafc74e2ed6cf877f9b4a12c40ceac5e52.zip
refactor data structures
Diffstat (limited to 'test')
-rw-r--r--test/emcc_O2_hello_world.wast2
-rw-r--r--test/emcc_hello_world.wast2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/emcc_O2_hello_world.wast b/test/emcc_O2_hello_world.wast
index 9aae649a1..8392dabea 100644
--- a/test/emcc_O2_hello_world.wast
+++ b/test/emcc_O2_hello_world.wast
@@ -1,7 +1,7 @@
(module
(memory 16777216 16777216)
- (type $FUNCSIG$ii (func (param i32) (result i32)))
(type $FUNCSIG$iiii (func (param i32 i32 i32) (result i32)))
+ (type $FUNCSIG$ii (func (param i32) (result i32)))
(type $FUNCSIG$vi (func (param i32)))
(export "_free" $_free)
(export "_main" $_main)
diff --git a/test/emcc_hello_world.wast b/test/emcc_hello_world.wast
index 6ed6b3d65..80fb3908b 100644
--- a/test/emcc_hello_world.wast
+++ b/test/emcc_hello_world.wast
@@ -1,7 +1,7 @@
(module
(memory 16777216 16777216)
- (type $FUNCSIG$ii (func (param i32) (result i32)))
(type $FUNCSIG$iiii (func (param i32 i32 i32) (result i32)))
+ (type $FUNCSIG$ii (func (param i32) (result i32)))
(type $FUNCSIG$vi (func (param i32)))
(export "_i64Subtract" $_i64Subtract)
(export "_free" $_free)