diff options
author | Thomas Lively <tlively@google.com> | 2023-09-13 20:02:26 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-13 20:02:26 -0700 |
commit | 2cbe448eb4df17010f0e5f360a8e705da710f3e0 (patch) | |
tree | b0967cb40dd4dbb2d209afb66cdf58c8af498cf9 /test/lit/exec | |
parent | 9d79632c210a8c5002657ae87ff06c70ee109e8f (diff) | |
download | binaryen-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/exec')
-rw-r--r-- | test/lit/exec/i31.wast | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/lit/exec/i31.wast b/test/lit/exec/i31.wast index c8b43e6ce..cd25dffa0 100644 --- a/test/lit/exec/i31.wast +++ b/test/lit/exec/i31.wast @@ -24,7 +24,7 @@ ;; CHECK-NEXT: [fuzz-exec] note result: non-null => 0 (func "non-null" (result i32) (ref.is_null - (i31.new + (ref.i31 (i32.const 1234) ) ) @@ -34,7 +34,7 @@ ;; CHECK-NEXT: [fuzz-exec] note result: nn-u => 2147483647 (func "nn-u" (result i32) (i31.get_u - (i31.new + (ref.i31 (i32.const 0xffffffff) ) ) @@ -44,7 +44,7 @@ ;; CHECK-NEXT: [fuzz-exec] note result: nn-s => -1 (func "nn-s" (result i32) (i31.get_s - (i31.new + (ref.i31 (i32.const 0xffffffff) ) ) @@ -55,7 +55,7 @@ (func "zero-is-not-null" (result i32) (local $ref (ref null i31)) (local.set $ref - (i31.new + (ref.i31 (i32.const 0) ) ) |