Skip to content
This repository was archived by the owner on Nov 3, 2021. It is now read-only.

Commit 9f6a39f

Browse files
committed
Merge fixups
1 parent 30002e7 commit 9f6a39f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

test/core/binary.wast

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1077,7 +1077,7 @@
10771077
;; function 0
10781078
"\02\00"
10791079
"\0b") ;; end
1080-
"invalid reference type")
1080+
"malformed reference type")
10811081

10821082
;; passive element segment containing opcode ref.func
10831083
(module binary

test/core/table.wast

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
(module (table 0 65536 funcref))
99
(module (table 0 0xffff_ffff funcref))
1010

11-
(assert_invalid (module (table 0 funcref) (table 0 funcref)) "multiple tables")
12-
(assert_invalid (module (table (import "spectest" "table") 0 funcref) (table 0 funcref)) "multiple tables")
11+
(module (table 0 funcref) (table 0 funcref))
12+
(module (table (import "spectest" "table") 0 funcref) (table 0 funcref))
1313

1414
(assert_invalid (module (elem (i32.const 0))) "unknown table")
1515
(assert_invalid (module (elem (i32.const 0) $f) (func $f)) "unknown table")

0 commit comments

Comments
 (0)