diff options
author | Alon Zakai <alonzakai@gmail.com> | 2016-10-11 16:15:15 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-11 16:15:15 -0700 |
commit | 85900965a12a3f07c9cca8ef620d4bee039f16fc (patch) | |
tree | 184203f372600d547705ce3d11b616d52ad522aa /test/hello_world.fromasm.imprecise | |
parent | 1dbdfff8e997f74154dfebce124756e415aa431a (diff) | |
parent | 943fd287247f9d23d463a24e8eb4b0f666900c43 (diff) | |
download | binaryen-85900965a12a3f07c9cca8ef620d4bee039f16fc.tar.gz binaryen-85900965a12a3f07c9cca8ef620d4bee039f16fc.tar.bz2 binaryen-85900965a12a3f07c9cca8ef620d4bee039f16fc.zip |
Merge pull request #757 from WebAssembly/js-api
Tiny fixes for native wasm support
Diffstat (limited to 'test/hello_world.fromasm.imprecise')
-rw-r--r-- | test/hello_world.fromasm.imprecise | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/hello_world.fromasm.imprecise b/test/hello_world.fromasm.imprecise index fd9a167c6..2c544bd65 100644 --- a/test/hello_world.fromasm.imprecise +++ b/test/hello_world.fromasm.imprecise @@ -1,6 +1,6 @@ (module (import "env" "memory" (memory $0 256 256)) - (import "env" "table" (table 0 anyfunc)) + (import "env" "table" (table 0 0 anyfunc)) (import "env" "memoryBase" (global $memoryBase i32)) (import "env" "tableBase" (global $tableBase i32)) (export "add" (func $add)) |