⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 238568 in webkit


Ignore:
Timestamp:
Nov 27, 2018, 1:03:29 PM (8 years ago)
Author:
Ryan Haddad
Message:

Unreviewed, rolling out r238509.

Causes JSC tests to fail on iOS.

Reverted changeset:

"NaNs read from Wasm code needs to be be purified."
https://bugs.webkit.org/show_bug.cgi?id=191056
https://trac.webkit.org/changeset/238509

Location:
trunk
Files:
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/JSTests/ChangeLog

    r238543 r238568  
     12018-11-27  Ryan Haddad  <ryanhaddad@apple.com>
     2
     3        Unreviewed, rolling out r238509.
     4
     5        Causes JSC tests to fail on iOS.
     6
     7        Reverted changeset:
     8
     9        "NaNs read from Wasm code needs to be be purified."
     10        https://bugs.webkit.org/show_bug.cgi?id=191056
     11        https://trac.webkit.org/changeset/238509
     12
    1132018-11-26  Caio Lima  <ticaiolima@gmail.com>
    214
  • trunk/Source/JavaScriptCore/ChangeLog

    r238564 r238568  
     12018-11-27  Ryan Haddad  <ryanhaddad@apple.com>
     2
     3        Unreviewed, rolling out r238509.
     4
     5        Causes JSC tests to fail on iOS.
     6
     7        Reverted changeset:
     8
     9        "NaNs read from Wasm code needs to be be purified."
     10        https://bugs.webkit.org/show_bug.cgi?id=191056
     11        https://trac.webkit.org/changeset/238509
     12
    1132018-11-27  Mark Lam  <mark.lam@apple.com>
    214
  • trunk/Source/JavaScriptCore/wasm/js/WebAssemblyModuleRecord.cpp

    r238509 r238568  
    389389
    390390            case Wasm::F32:
    391                 exportedValue = jsNumber(purifyNaN(m_instance->instance().loadF32Global(exp.kindIndex)));
     391                exportedValue = JSValue(m_instance->instance().loadF32Global(exp.kindIndex));
    392392                break;
    393393
    394394            case Wasm::F64:
    395                 exportedValue = jsNumber(purifyNaN(m_instance->instance().loadF64Global(exp.kindIndex)));
     395                exportedValue = JSValue(m_instance->instance().loadF64Global(exp.kindIndex));
    396396                break;
    397397
Note: See TracChangeset for help on using the changeset viewer.