Title: [260633] releases/WebKitGTK/webkit-2.28/JSTests
Revision
260633
Author
[email protected]
Date
2020-04-24 02:21:02 -0700 (Fri, 24 Apr 2020)

Log Message

Merge r256698 - 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: releases/WebKitGTK/webkit-2.28/JSTests/ChangeLog (260632 => 260633)


--- releases/WebKitGTK/webkit-2.28/JSTests/ChangeLog	2020-04-24 09:20:58 UTC (rev 260632)
+++ releases/WebKitGTK/webkit-2.28/JSTests/ChangeLog	2020-04-24 09:21:02 UTC (rev 260633)
@@ -1,5 +1,15 @@
 2020-02-14  Tadeu Zagallo  <[email protected]>
 
+        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  <[email protected]>
+
         [WASM] Wasm interpreter's calling convention doesn't match Wasm JIT's convention.
         https://bugs.webkit.org/show_bug.cgi?id=207727
 

Modified: releases/WebKitGTK/webkit-2.28/JSTests/wasm/regress/llint-callee-saves-with-fast-memory.js (260632 => 260633)


--- releases/WebKitGTK/webkit-2.28/JSTests/wasm/regress/llint-callee-saves-with-fast-memory.js	2020-04-24 09:20:58 UTC (rev 260632)
+++ releases/WebKitGTK/webkit-2.28/JSTests/wasm/regress/llint-callee-saves-with-fast-memory.js	2020-04-24 09:21:02 UTC (rev 260633)
@@ -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: releases/WebKitGTK/webkit-2.28/JSTests/wasm/regress/llint-callee-saves-without-fast-memory.js (260632 => 260633)


--- releases/WebKitGTK/webkit-2.28/JSTests/wasm/regress/llint-callee-saves-without-fast-memory.js	2020-04-24 09:20:58 UTC (rev 260632)
+++ releases/WebKitGTK/webkit-2.28/JSTests/wasm/regress/llint-callee-saves-without-fast-memory.js	2020-04-24 09:21:02 UTC (rev 260633)
@@ -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
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to