diff options
Diffstat (limited to 'test/empty.fromasm')
-rw-r--r-- | test/empty.fromasm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/empty.fromasm b/test/empty.fromasm index b68429ccf..67c1135d4 100644 --- a/test/empty.fromasm +++ b/test/empty.fromasm @@ -1,8 +1,8 @@ (module (memory 256 256) (data (get_global $memoryBase) "empty.asm.js") - (import $memory memory "env" "memory") - (import $table table "env" "table") - (import $memoryBase global "env" "memoryBase" i32) - (import $tableBase global "env" "tableBase" i32) + (import "env" "memory" (memory $memory)) + (import "env" "table" (table $table)) + (import "env" "memoryBase" (global $memoryBase i32)) + (import "env" "tableBase" (global $tableBase i32)) ) |