Title: [87183] trunk/Source/_javascript_Core
Revision
87183
Author
[email protected]
Date
2011-05-24 12:07:46 -0700 (Tue, 24 May 2011)

Log Message

Windows build fix: update the #if OS(WINDOWS) section to match my last patch.

* heap/MarkStack.h:
(JSC::::shrinkAllocation):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (87182 => 87183)


--- trunk/Source/_javascript_Core/ChangeLog	2011-05-24 19:03:46 UTC (rev 87182)
+++ trunk/Source/_javascript_Core/ChangeLog	2011-05-24 19:07:46 UTC (rev 87183)
@@ -1,5 +1,12 @@
 2011-05-24  Geoffrey Garen  <[email protected]>
 
+        Windows build fix: update the #if OS(WINDOWS) section to match my last patch.
+
+        * heap/MarkStack.h:
+        (JSC::::shrinkAllocation):
+
+2011-05-24  Geoffrey Garen  <[email protected]>
+
         Rubber-stamped by Oliver Hunt.
 
         Split out function definitions and class definitions from class

Modified: trunk/Source/_javascript_Core/heap/MarkStack.h (87182 => 87183)


--- trunk/Source/_javascript_Core/heap/MarkStack.h	2011-05-24 19:03:46 UTC (rev 87182)
+++ trunk/Source/_javascript_Core/heap/MarkStack.h	2011-05-24 19:07:46 UTC (rev 87183)
@@ -249,8 +249,8 @@
 #if OS(WINDOWS) || OS(SYMBIAN) || PLATFORM(BREWMP)
         // We cannot release a part of a region with VirtualFree.  To get around this,
         // we'll release the entire region and reallocate the size that we want.
-        releaseStack(m_data, m_allocated);
-        m_data = reinterpret_cast<T*>(allocateStack(size));
+        MarkStack::releaseStack(m_data, m_allocated);
+        m_data = reinterpret_cast<T*>(MarkStack::allocateStack(size));
 #else
         MarkStack::releaseStack(reinterpret_cast<char*>(m_data) + size, m_allocated - size);
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to