Changeset 115580 in webkit for trunk/Source/JavaScriptCore


Ignore:
Timestamp:
Apr 28, 2012, 1:58:47 PM (13 years ago)
Author:
[email protected]
Message:

2012-04-28 Geoffrey Garen <[email protected]>

Try to fix the Windows build.

Location:
trunk/Source/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r115579 r115580  
     12012-04-28  Geoffrey Garen  <[email protected]>
     2
     3        Try to fix the Windows build.
     4
     5        * JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.def:
     6
    172012-04-28  Geoffrey Garen  <[email protected]>
    28
  • trunk/Source/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.def

    r115536 r115580  
    9090    ?className@JSObject@JSC@@SA?AVUString@2@PBV12@@Z
    9191    ?clear@SourceProviderCache@JSC@@QAEXXZ
    92     ?clearBuiltinStructures@JSGlobalData@JSC@@QAEXXZ
    9392    ?clearRareData@JSGlobalObject@JSC@@CAXPAVJSCell@2@@Z
    9493    ?collate@Collator@WTF@@QBE?AW4Result@12@PB_WI0I@Z
     
    147146    ?despecifyDictionaryFunction@Structure@JSC@@QAEXAAVJSGlobalData@2@ABVIdentifier@2@@Z
    148147    ?despecifyFunctionTransition@Structure@JSC@@SAPAV12@AAVJSGlobalData@2@PAV12@ABVIdentifier@2@@Z
    149     ?destroy@Heap@JSC@@QAEXXZ
    150148    ?destroy@JSCell@JSC@@KAXPAV12@@Z
    151149    ?destroy@JSGlobalObject@JSC@@SAXPAVJSCell@2@@Z
  • trunk/Source/JavaScriptCore/heap/Heap.cpp

    r115579 r115580  
    367367    // FIXME: Make this a release-mode crash once we're sure no one's doing this.
    368368    if (size_t size = m_protectedValues.size())
    369         LOG_ERROR("JavaScriptCore heap deallocated while %ld values were still protected", size);
     369        WTFLogAlways("ERROR: JavaScriptCore heap deallocated while %ld values were still protected", size);
    370370
    371371    m_weakSet.finalizeAll();
Note: See TracChangeset for help on using the changeset viewer.