summaryrefslogtreecommitdiff
path: root/test/lit/arrays.wast
diff options
context:
space:
mode:
authorThomas Lively <tlively@google.com>2024-01-03 13:36:27 -0800
committerGitHub <noreply@github.com>2024-01-03 13:36:27 -0800
commitc923521a61205dd2358201e311b009886e095381 (patch)
tree4c28cc0bca3b82f74586aa7009d20835a9455a17 /test/lit/arrays.wast
parenta6bc9542e98b4164d3a26c67c94b1136b4fc8b86 (diff)
downloadbinaryen-c923521a61205dd2358201e311b009886e095381.tar.gz
binaryen-c923521a61205dd2358201e311b009886e095381.tar.bz2
binaryen-c923521a61205dd2358201e311b009886e095381.zip
Drop support for type annotations on array.len (#6197)
These type annotations were removed during the development of the GC proposal, but we maintained support for parsing them to ease the transition. Now that GC is shipped, remove support for the non-standard annotation and update our tests accordingly.
Diffstat (limited to 'test/lit/arrays.wast')
-rw-r--r--test/lit/arrays.wast7
1 files changed, 3 insertions, 4 deletions
diff --git a/test/lit/arrays.wast b/test/lit/arrays.wast
index 47338fdf1..4dde528cf 100644
--- a/test/lit/arrays.wast
+++ b/test/lit/arrays.wast
@@ -60,8 +60,7 @@
;; ROUNDTRIP-NEXT: )
;; ROUNDTRIP-NEXT: )
(func $len (param $a (ref array)) (result i32)
- ;; TODO: remove the unused type annotation
- (array.len $byte-array
+ (array.len
(local.get $a)
)
)
@@ -77,7 +76,7 @@
;; ROUNDTRIP-NEXT: )
;; ROUNDTRIP-NEXT: )
(func $impossible-len (param $none nullref) (result i32)
- (array.len $byte-array
+ (array.len
(local.get $none)
)
)
@@ -91,7 +90,7 @@
;; ROUNDTRIP-NEXT: (unreachable)
;; ROUNDTRIP-NEXT: )
(func $unreachable-len (param $a arrayref) (result i32)
- (array.len $byte-array
+ (array.len
(unreachable)
)
)