diff options
Diffstat (limited to 'test/lit/basic/multi-table.wast')
-rw-r--r-- | test/lit/basic/multi-table.wast | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/lit/basic/multi-table.wast b/test/lit/basic/multi-table.wast index 3a464dca1..64de79df0 100644 --- a/test/lit/basic/multi-table.wast +++ b/test/lit/basic/multi-table.wast @@ -15,17 +15,16 @@ (type $none_=>_none (func)) (type $A (struct)) ;; CHECK-TEXT: (import "a" "b" (table $t1 1 10 funcref)) - - ;; CHECK-TEXT: (global $g1 (ref null $none_=>_none) (ref.func $f)) ;; CHECK-BIN: (import "a" "b" (table $t1 1 10 funcref)) + (import "a" "b" (table $t1 1 10 funcref)) + ;; CHECK-TEXT: (global $g1 (ref null $none_=>_none) (ref.func $f)) ;; CHECK-BIN: (global $g1 (ref null $none_=>_none) (ref.func $f)) (global $g1 (ref null $none_=>_none) (ref.func $f)) ;; CHECK-TEXT: (global $g2 i32 (i32.const 0)) ;; CHECK-BIN: (global $g2 i32 (i32.const 0)) (global $g2 i32 (i32.const 0)) - (import "a" "b" (table $t1 1 10 funcref)) ;; CHECK-TEXT: (table $t2 3 3 funcref) ;; CHECK-BIN: (table $t2 3 3 funcref) (table $t2 3 3 funcref) |