summaryrefslogtreecommitdiff
path: root/test/passes/merge-locals_all-features.wast
diff options
context:
space:
mode:
Diffstat (limited to 'test/passes/merge-locals_all-features.wast')
-rw-r--r--test/passes/merge-locals_all-features.wast25
1 files changed, 13 insertions, 12 deletions
diff --git a/test/passes/merge-locals_all-features.wast b/test/passes/merge-locals_all-features.wast
index 2a0a3d292..c12a02426 100644
--- a/test/passes/merge-locals_all-features.wast
+++ b/test/passes/merge-locals_all-features.wast
@@ -375,17 +375,18 @@
)
)
)
- (func $subtype-test
- (local $0 externref)
- (local $1 nullref)
- (local $2 nullref)
- (local.set $0
- (local.get $1)
- )
- (local.set $2
- ;; This should NOT become $0, because types of $0 and $1 are different
- (local.get $1)
- )
- )
+ ;; TODO (GC)
+ ;; (func $subtype-test
+ ;; (local $0 anyref)
+ ;; (local $1 funcref)
+ ;; (local $2 funcref)
+ ;; (local.set $0
+ ;; (local.get $1)
+ ;; )
+ ;; (local.set $2
+ ;; ;; This should NOT become $0, because types of $0 and $1 are different
+ ;; (local.get $1)
+ ;; )
+ ;; )
)