summaryrefslogtreecommitdiff
path: root/test/passes/flatten_local-cse_all-features.wast
diff options
context:
space:
mode:
authorJay Phelps <hello@jayphelps.com>2020-06-10 16:34:56 -0400
committerGitHub <noreply@github.com>2020-06-10 13:34:56 -0700
commitf21eb572dd4a30c27dfad813249c3d715b4d1bca (patch)
tree2e1a2d9020a88584625e5c51dc691193037685cf /test/passes/flatten_local-cse_all-features.wast
parent6ec03c5c0c664660a88fdb61ac1d3bd1f8b14771 (diff)
downloadbinaryen-f21eb572dd4a30c27dfad813249c3d715b4d1bca.tar.gz
binaryen-f21eb572dd4a30c27dfad813249c3d715b4d1bca.tar.bz2
binaryen-f21eb572dd4a30c27dfad813249c3d715b4d1bca.zip
Rename anyref to externref to match proposal change (#2900)
anyref future semantics were changed to only represent opaque host values, and thus renamed to externref. [Chromium](https://bugs.chromium.org/p/v8/issues/detail?id=7748#c360) was just updated to today (not yet released). I couldn't find a Mozilla bugzilla ticket mentioning externref so I don't immediately know if they've updated yet. https://github.com/WebAssembly/reference-types/pull/87
Diffstat (limited to 'test/passes/flatten_local-cse_all-features.wast')
-rw-r--r--test/passes/flatten_local-cse_all-features.wast4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/passes/flatten_local-cse_all-features.wast b/test/passes/flatten_local-cse_all-features.wast
index 112dfe647..1b4dc37c2 100644
--- a/test/passes/flatten_local-cse_all-features.wast
+++ b/test/passes/flatten_local-cse_all-features.wast
@@ -300,7 +300,7 @@
)
(func $test
- (local $0 anyref)
+ (local $0 externref)
(drop
(block $label$1 (result nullref)
(local.set $0
@@ -308,7 +308,7 @@
)
;; After --flatten, this will be assigned to a local of nullref type. After
;; --local-cse, even if we set (ref.null) to local $0 above, this should not
- ;; be replaced with $0, because it is of type anyref.
+ ;; be replaced with $0, because it is of type externref.
(ref.null)
)
)