Title: [94731] trunk/Source/_javascript_Core
Revision
94731
Author
[email protected]
Date
2011-09-07 16:48:54 -0700 (Wed, 07 Sep 2011)

Log Message

PPC build fix.

* bytecode/CodeBlock.cpp:
(JSC::CodeBlock::~CodeBlock):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (94730 => 94731)


--- trunk/Source/_javascript_Core/ChangeLog	2011-09-07 23:48:13 UTC (rev 94730)
+++ trunk/Source/_javascript_Core/ChangeLog	2011-09-07 23:48:54 UTC (rev 94731)
@@ -1,3 +1,10 @@
+2011-09-07  Filip Pizlo  <[email protected]>
+
+        PPC build fix.
+
+        * bytecode/CodeBlock.cpp:
+        (JSC::CodeBlock::~CodeBlock):
+
 2011-09-07  Oliver Hunt  <[email protected]>
 
         Release mode build fix.

Modified: trunk/Source/_javascript_Core/bytecode/CodeBlock.cpp (94730 => 94731)


--- trunk/Source/_javascript_Core/bytecode/CodeBlock.cpp	2011-09-07 23:48:13 UTC (rev 94730)
+++ trunk/Source/_javascript_Core/bytecode/CodeBlock.cpp	2011-09-07 23:48:54 UTC (rev 94731)
@@ -1448,6 +1448,7 @@
     }
 #endif
     
+#if ENABLE(JIT)
     // We may be destroyed before any CodeBlocks that refer to us are destroyed.
     // Consider that two CodeBlocks become unreachable at the same time. There
     // is no guarantee about the order in which the CodeBlocks are destroyed.
@@ -1461,7 +1462,6 @@
     // m_incomingCalls linked lists through the execution of the ~CallLinkInfo
     // destructors.
 
-#if ENABLE(JIT)
     for (size_t size = m_structureStubInfos.size(), i = 0; i < size; ++i)
         m_structureStubInfos[i].deref();
 #endif // ENABLE(JIT)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to