Ignore:
Timestamp:
Jul 22, 2016, 1:35:07 PM (9 years ago)
Author:
[email protected]
Message:

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

Caused CLoop tests to fail with assertions (Requested by
perarne on #webkit).

Reverted changeset:

"[Win] jsc.exe sometimes never exits."
https://bugs.webkit.org/show_bug.cgi?id=158073
http://trac.webkit.org/changeset/203603

File:
1 edited

Legend:

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

    r203603 r203613  
    24272427    JSC::initializeThreading();
    24282428
    2429     Ref<VM> vm = VM::create(LargeHeap);
    2430     int result = runJSC(vm.ptr(), options);
     2429    VM* vm = &VM::create(LargeHeap).leakRef();
     2430    int result;
     2431    result = runJSC(vm, options);
    24312432
    24322433    if (Options::gcAtEnd()) {
Note: See TracChangeset for help on using the changeset viewer.