Ignore:
Timestamp:
May 29, 2015, 12:51:17 AM (10 years ago)
Author:
[email protected]
Message:

Unreviewed, rolling out r184860.
https://bugs.webkit.org/show_bug.cgi?id=145456

May have caused ~1% Octane regression (Requested by kling on
#webkit).

Reverted changeset:

"Try to use StringView when comparing JSStrings for equality."
https://bugs.webkit.org/show_bug.cgi?id=145379
http://trac.webkit.org/changeset/184860

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/jit/JITOperations.cpp

    r184860 r184983  
    924924    NativeCallFrameTracer tracer(vm, exec);
    925925
    926     bool result = WTF::equal(asString(left)->view(exec), asString(right)->view(exec));
     926    bool result = WTF::equal(*asString(left)->value(exec).impl(), *asString(right)->value(exec).impl());
    927927#if USE(JSVALUE64)
    928928    return JSValue::encode(jsBoolean(result));
Note: See TracChangeset for help on using the changeset viewer.