diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-10-30 12:52:14 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-10-30 12:52:14 -0700 |
commit | f7fc8052ffaa6ece619a2c5c98c7025ca45acd5f (patch) | |
tree | 03e52d14f6a71a83584083f72a3d92fc8427b85e /test/unit.wast | |
parent | 418ebad61c099737b4fd56f3030b1fd1e0e89a2b (diff) | |
download | binaryen-f7fc8052ffaa6ece619a2c5c98c7025ca45acd5f.tar.gz binaryen-f7fc8052ffaa6ece619a2c5c98c7025ca45acd5f.tar.bz2 binaryen-f7fc8052ffaa6ece619a2c5c98c7025ca45acd5f.zip |
handle minified function tables
Diffstat (limited to 'test/unit.wast')
-rw-r--r-- | test/unit.wast | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/unit.wast b/test/unit.wast index 5fecdcad3..346286b18 100644 --- a/test/unit.wast +++ b/test/unit.wast @@ -1,6 +1,7 @@ (module (memory 16777216) (export "big_negative" $big_negative) + (table $z $big_negative $importedDoubles $z) (func $big_negative (local $temp f64) (block @@ -44,4 +45,10 @@ ) ) ) + (func $z + (nop) + ) + (func $w + (nop) + ) ) |