diff options
Diffstat (limited to 'test/passes/simplify-locals_all-features_disable-exception-handling.wast')
-rw-r--r-- | test/passes/simplify-locals_all-features_disable-exception-handling.wast | 33 |
1 files changed, 16 insertions, 17 deletions
diff --git a/test/passes/simplify-locals_all-features_disable-exception-handling.wast b/test/passes/simplify-locals_all-features_disable-exception-handling.wast index c0f279cd0..f9806641c 100644 --- a/test/passes/simplify-locals_all-features_disable-exception-handling.wast +++ b/test/passes/simplify-locals_all-features_disable-exception-handling.wast @@ -1655,20 +1655,19 @@ ) ) ) -;; TODO (GC) -;; (module -;; (func $subtype-test (result anyref) -;; (local $0 funcref) -;; (local $1 anyref) -;; (local $2 anyref) -;; (block -;; (local.set $1 -;; (local.get $0) -;; ) -;; ) -;; (local.set $2 -;; (local.get $1) -;; ) -;; (local.get $1) -;; ) -;; ) +(module + (func $subtype-test (result anyref) + (local $0 funcref) + (local $1 anyref) + (local $2 anyref) + (block + (local.set $1 + (local.get $0) + ) + ) + (local.set $2 + (local.get $1) + ) + (local.get $1) + ) +) |