Title: [256981] branches/safari-609.1.20.1-branch/JSTests
Revision
256981
Author
repst...@apple.com
Date
2020-02-19 15:38:37 -0800 (Wed, 19 Feb 2020)

Log Message

Cherry-pick r256698. rdar://problem/59576809

    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:

    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@256698 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: branches/safari-609.1.20.1-branch/JSTests/ChangeLog (256980 => 256981)


--- branches/safari-609.1.20.1-branch/JSTests/ChangeLog	2020-02-19 23:38:32 UTC (rev 256980)
+++ branches/safari-609.1.20.1-branch/JSTests/ChangeLog	2020-02-19 23:38:37 UTC (rev 256981)
@@ -1,5 +1,29 @@
 2020-02-19  Alan Coon  <alanc...@apple.com>
 
+        Cherry-pick r256698. rdar://problem/59576809
+
+    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:
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@256698 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    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-19  Alan Coon  <alanc...@apple.com>
+
         Cherry-pick r256665. rdar://problem/59576809
 
     [WASM] Wasm interpreter's calling convention doesn't match Wasm JIT's convention.

Modified: branches/safari-609.1.20.1-branch/JSTests/wasm/regress/llint-callee-saves-with-fast-memory.js (256980 => 256981)


--- branches/safari-609.1.20.1-branch/JSTests/wasm/regress/llint-callee-saves-with-fast-memory.js	2020-02-19 23:38:32 UTC (rev 256980)
+++ branches/safari-609.1.20.1-branch/JSTests/wasm/regress/llint-callee-saves-with-fast-memory.js	2020-02-19 23:38:37 UTC (rev 256981)
@@ -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: branches/safari-609.1.20.1-branch/JSTests/wasm/regress/llint-callee-saves-without-fast-memory.js (256980 => 256981)


--- branches/safari-609.1.20.1-branch/JSTests/wasm/regress/llint-callee-saves-without-fast-memory.js	2020-02-19 23:38:32 UTC (rev 256980)
+++ branches/safari-609.1.20.1-branch/JSTests/wasm/regress/llint-callee-saves-without-fast-memory.js	2020-02-19 23:38:37 UTC (rev 256981)
@@ -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