Changeset 256698 in webkit


Ignore:
Timestamp:
Feb 14, 2020 7:19:11 PM (4 years ago)
Author:
Tadeu Zagallo
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:
Location:
trunk/JSTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/JSTests/ChangeLog

    r256665 r256698  
     12020-02-14  Tadeu Zagallo  <tzagallo@apple.com>
     2
     3        Unreviewed: fix broken tests added in r256665
     4        https://bugs.webkit.org/show_bug.cgi?id=207727
     5
     6        Our inline WAT doesn't seem to like named blocks/branch targets.
     7
     8        * wasm/regress/llint-callee-saves-with-fast-memory.js:
     9        * wasm/regress/llint-callee-saves-without-fast-memory.js:
     10
    1112020-02-14  Tadeu Zagallo  <tzagallo@apple.com>
    212
  • trunk/JSTests/wasm/regress/llint-callee-saves-with-fast-memory.js

    r256665 r256698  
    2424        (local $i i32)
    2525        (local.set $i (i32.const 100000))
    26         (loop $warmup
     26        (loop
    2727            (i32.sub (local.get $i) (i32.const 1))
    2828            (local.tee $i)
    2929            (call $f (i32.const 1))
    30             (br_if $warmup)
     30            (br_if 0)
    3131        )
    3232        (call $f (i32.const 0))
  • trunk/JSTests/wasm/regress/llint-callee-saves-without-fast-memory.js

    r256665 r256698  
    2222        (local $i i32)
    2323        (local.set $i (i32.const 100000))
    24         (loop $warmup
     24        (loop
    2525            (i32.sub (local.get $i) (i32.const 1))
    2626            (local.tee $i)
    2727            (call $f (i32.const 1))
    28             (br_if $warmup)
     28            (br_if 0)
    2929        )
    3030        (call $f (i32.const 0))
Note: See TracChangeset for help on using the changeset viewer.