diff options
Diffstat (limited to 'test/two_sides.fromasm.no-opts')
-rw-r--r-- | test/two_sides.fromasm.no-opts | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/two_sides.fromasm.no-opts b/test/two_sides.fromasm.no-opts index 4123ec856..b10f96c69 100644 --- a/test/two_sides.fromasm.no-opts +++ b/test/two_sides.fromasm.no-opts @@ -1,11 +1,11 @@ (module (memory 256 256) (type $FUNCSIG$id (func (param f64) (result i32))) - (import $f64-to-int "asm2wasm" "f64-to-int" (param f64) (result i32)) - (import $memory memory "env" "memory") - (import $table table "env" "table") - (import $memoryBase global "env" "memoryBase" i32) - (import $tableBase global "env" "tableBase" i32) + (import "asm2wasm" "f64-to-int" (func $f64-to-int (param f64) (result i32))) + (import "env" "memory" (memory $memory)) + (import "env" "table" (table $table)) + (import "env" "memoryBase" (global $memoryBase i32)) + (import "env" "tableBase" (global $tableBase i32)) (export "_test" $_test) (func $_test (param $i1 i32) (param $i2 i32) (param $i3 i32) (param $i4 i32) (param $i5 i32) (result i32) (local $d6 f64) |