Ignore:
Timestamp:
May 8, 2018, 10:52:55 AM (7 years ago)
Author:
Ryan Haddad
Message:

Unreviewed, rolling out r231468.

Broke the CLoop build

Reverted changeset:

"InPlaceAbstractState::beginBasicBlock shouldn't have to clear
any abstract values"
https://bugs.webkit.org/show_bug.cgi?id=185365
https://trac.webkit.org/changeset/231468

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/jsc.cpp

    r231468 r231492  
    348348static EncodedJSValue JSC_HOST_CALL functionDisableRichSourceInfo(ExecState*);
    349349static EncodedJSValue JSC_HOST_CALL functionMallocInALoop(ExecState*);
    350 static EncodedJSValue JSC_HOST_CALL functionTotalCompileTime(ExecState*);
    351350
    352351struct Script {
     
    608607        addFunction(vm, "disableRichSourceInfo", functionDisableRichSourceInfo, 0);
    609608        addFunction(vm, "mallocInALoop", functionMallocInALoop, 0);
    610         addFunction(vm, "totalCompileTime", functionTotalCompileTime, 0);
    611609    }
    612610   
     
    18121810}
    18131811
    1814 EncodedJSValue JSC_HOST_CALL functionTotalCompileTime(ExecState*)
    1815 {
    1816     return JSValue::encode(jsNumber(JIT::totalCompileTime().milliseconds()));
    1817 }
    1818 
    18191812template<typename ValueType>
    18201813typename std::enable_if<!std::is_fundamental<ValueType>::value>::type addOption(VM&, JSObject*, Identifier, ValueType) { }
Note: See TracChangeset for help on using the changeset viewer.