summaryrefslogtreecommitdiff
path: root/test/lit/passes/signature-pruning.wast
diff options
context:
space:
mode:
authorThomas Lively <tlively@google.com>2023-09-13 20:02:26 -0700
committerGitHub <noreply@github.com>2023-09-13 20:02:26 -0700
commit2cbe448eb4df17010f0e5f360a8e705da710f3e0 (patch)
treeb0967cb40dd4dbb2d209afb66cdf58c8af498cf9 /test/lit/passes/signature-pruning.wast
parent9d79632c210a8c5002657ae87ff06c70ee109e8f (diff)
downloadbinaryen-2cbe448eb4df17010f0e5f360a8e705da710f3e0.tar.gz
binaryen-2cbe448eb4df17010f0e5f360a8e705da710f3e0.tar.bz2
binaryen-2cbe448eb4df17010f0e5f360a8e705da710f3e0.zip
Replace i31.new with ref.i31 everywhere (#5931)
Replace i31.new with ref.i31 in the printer, tests, and source code. Continue parsing i31.new for the time being to allow a graceful transition. Also update the JS API to reflect the new instruction name.
Diffstat (limited to 'test/lit/passes/signature-pruning.wast')
-rw-r--r--test/lit/passes/signature-pruning.wast4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lit/passes/signature-pruning.wast b/test/lit/passes/signature-pruning.wast
index 3e9d0742f..eaa05ac46 100644
--- a/test/lit/passes/signature-pruning.wast
+++ b/test/lit/passes/signature-pruning.wast
@@ -797,7 +797,7 @@
;; CHECK-NEXT: (local.get $anyref)
;; CHECK-NEXT: )
;; CHECK-NEXT: (call $bar
- ;; CHECK-NEXT: (i31.new
+ ;; CHECK-NEXT: (ref.i31
;; CHECK-NEXT: (i32.const 0)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
@@ -808,7 +808,7 @@
(func $bar (type $sig-bar) (param $anyref anyref)
(drop (local.get $anyref))
;; Mixing a null with something else prevents optimization, of course.
- (call $bar (i31.new (i32.const 0)))
+ (call $bar (ref.i31 (i32.const 0)))
(call $bar (ref.null none))
)
)