[Webkit-unassigned] [Bug 164374] New: Add the following Wasm test.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Nov 3 12:23:25 PDT 2016


https://bugs.webkit.org/show_bug.cgi?id=164374

            Bug ID: 164374
           Summary: Add the following Wasm test.
    Classification: Unclassified
           Product: WebKit
           Version: WebKit Nightly Build
          Hardware: Unspecified
                OS: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: JavaScriptCore
          Assignee: webkit-unassigned at lists.webkit.org
          Reporter: keith_miller at apple.com

(module
 (func (export "if-then-both-fallthrough") (param $x i32) (param $y i32) (result i32)
       (block $block i32
         (if i32 (i32.eq (get_local $x) (i32.const 0))
           (then (i32.const 1))
           (else
            (i32.const 2)
            (i32.const 1)
            )
           )
         )
       )
 )

We can't add this yet since the current version of the ML prototype does not support the stack at block exit differing the expected return type.
Updating the ML-prototype version is a pain since we will need to update all the opcode numbers and regenerate all the existing tests.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.webkit.org/pipermail/webkit-unassigned/attachments/20161103/9d2df1e3/attachment.html>


More information about the webkit-unassigned mailing list