Title: [256698] trunk/JSTests
Revision
256698
Author
tzaga...@apple.com
Date
2020-02-14 19:19:11 -0800 (Fri, 14 Feb 2020)

Log Message

Unreviewed: fix broken tests added in r256665
https://bugs.webkit.org/show_bug.cgi?id=207727

Our inline WAT doesn't seem to like named blocks/branch targets.

* wasm/regress/llint-callee-saves-with-fast-memory.js:
* wasm/regress/llint-callee-saves-without-fast-memory.js:

Modified Paths

Diff

Modified: trunk/JSTests/ChangeLog (256697 => 256698)


--- trunk/JSTests/ChangeLog	2020-02-15 03:19:00 UTC (rev 256697)
+++ trunk/JSTests/ChangeLog	2020-02-15 03:19:11 UTC (rev 256698)
@@ -1,5 +1,15 @@
 2020-02-14  Tadeu Zagallo  <tzaga...@apple.com>
 
+        Unreviewed: fix broken tests added in r256665
+        https://bugs.webkit.org/show_bug.cgi?id=207727
+
+        Our inline WAT doesn't seem to like named blocks/branch targets.
+
+        * wasm/regress/llint-callee-saves-with-fast-memory.js:
+        * wasm/regress/llint-callee-saves-without-fast-memory.js:
+
+2020-02-14  Tadeu Zagallo  <tzaga...@apple.com>
+
         [WASM] Wasm interpreter's calling convention doesn't match Wasm JIT's convention.
         https://bugs.webkit.org/show_bug.cgi?id=207727
 

Modified: trunk/JSTests/wasm/regress/llint-callee-saves-with-fast-memory.js (256697 => 256698)


--- trunk/JSTests/wasm/regress/llint-callee-saves-with-fast-memory.js	2020-02-15 03:19:00 UTC (rev 256697)
+++ trunk/JSTests/wasm/regress/llint-callee-saves-with-fast-memory.js	2020-02-15 03:19:11 UTC (rev 256698)
@@ -23,11 +23,11 @@
     (func (export "main")
         (local $i i32)
         (local.set $i (i32.const 100000))
-        (loop $warmup
+        (loop
             (i32.sub (local.get $i) (i32.const 1))
             (local.tee $i)
             (call $f (i32.const 1))
-            (br_if $warmup)
+            (br_if 0)
         )
         (call $f (i32.const 0))
     )

Modified: trunk/JSTests/wasm/regress/llint-callee-saves-without-fast-memory.js (256697 => 256698)


--- trunk/JSTests/wasm/regress/llint-callee-saves-without-fast-memory.js	2020-02-15 03:19:00 UTC (rev 256697)
+++ trunk/JSTests/wasm/regress/llint-callee-saves-without-fast-memory.js	2020-02-15 03:19:11 UTC (rev 256698)
@@ -21,11 +21,11 @@
     (func (export "main")
         (local $i i32)
         (local.set $i (i32.const 100000))
-        (loop $warmup
+        (loop
             (i32.sub (local.get $i) (i32.const 1))
             (local.tee $i)
             (call $f (i32.const 1))
-            (br_if $warmup)
+            (br_if 0)
         )
         (call $f (i32.const 0))
     )
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to