Title: [115580] trunk/Source/_javascript_Core
Revision
115580
Author
[email protected]
Date
2012-04-28 13:58:47 -0700 (Sat, 28 Apr 2012)

Log Message

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

        Try to fix the Windows build.

        * _javascript_Core.vcproj/_javascript_Core/_javascript_Core.def:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (115579 => 115580)


--- trunk/Source/_javascript_Core/ChangeLog	2012-04-28 20:51:27 UTC (rev 115579)
+++ trunk/Source/_javascript_Core/ChangeLog	2012-04-28 20:58:47 UTC (rev 115580)
@@ -1,5 +1,11 @@
 2012-04-28  Geoffrey Garen  <[email protected]>
 
+        Try to fix the Windows build.
+
+        * _javascript_Core.vcproj/_javascript_Core/_javascript_Core.def:
+
+2012-04-28  Geoffrey Garen  <[email protected]>
+
         Clarified JSGlobalData (_javascript_ VM) lifetime
         https://bugs.webkit.org/show_bug.cgi?id=85142
 

Modified: trunk/Source/_javascript_Core/_javascript_Core.vcproj/_javascript_Core/_javascript_Core.def (115579 => 115580)


--- trunk/Source/_javascript_Core/_javascript_Core.vcproj/_javascript_Core/_javascript_Core.def	2012-04-28 20:51:27 UTC (rev 115579)
+++ trunk/Source/_javascript_Core/_javascript_Core.vcproj/_javascript_Core/_javascript_Core.def	2012-04-28 20:58:47 UTC (rev 115580)
@@ -89,7 +89,6 @@
     ?checksum@MD5@WTF@@QAEXAAV?$Vector@E$0BA@@2@@Z
     ?className@JSObject@JSC@@SA?AVUString@2@PBV12@@Z
     ?clear@SourceProviderCache@JSC@@QAEXXZ
-    ?clearBuiltinStructures@JSGlobalData@JSC@@QAEXXZ
     ?clearRareData@JSGlobalObject@JSC@@CAXPAVJSCell@2@@Z
     ?collate@Collator@WTF@@QBE?AW4Result@12@PB_WI0I@Z
     ?collectAllGarbage@Heap@JSC@@QAEXXZ
@@ -146,7 +145,6 @@
     ?deleteTable@HashTable@JSC@@QBEXXZ
     ?despecifyDictionaryFunction@Structure@JSC@@QAEXAAVJSGlobalData@2@ABVIdentifier@2@@Z
     ?despecifyFunctionTransition@Structure@JSC@@SAPAV12@AAVJSGlobalData@2@PAV12@ABVIdentifier@2@@Z
-    ?destroy@Heap@JSC@@QAEXXZ
     ?destroy@JSCell@JSC@@KAXPAV12@@Z
     ?destroy@JSGlobalObject@JSC@@SAXPAVJSCell@2@@Z
     ?destroy@OutOfLineBits@BitVector@WTF@@SAXPAV123@@Z

Modified: trunk/Source/_javascript_Core/heap/Heap.cpp (115579 => 115580)


--- trunk/Source/_javascript_Core/heap/Heap.cpp	2012-04-28 20:51:27 UTC (rev 115579)
+++ trunk/Source/_javascript_Core/heap/Heap.cpp	2012-04-28 20:58:47 UTC (rev 115580)
@@ -366,7 +366,7 @@
 
     // FIXME: Make this a release-mode crash once we're sure no one's doing this.
     if (size_t size = m_protectedValues.size())
-        LOG_ERROR("_javascript_Core heap deallocated while %ld values were still protected", size);
+        WTFLogAlways("ERROR: _javascript_Core heap deallocated while %ld values were still protected", size);
 
     m_weakSet.finalizeAll();
     canonicalizeCellLivenessData();
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to