Title: [88614] trunk/Source/_javascript_Core
Revision
88614
Author
[email protected]
Date
2011-06-12 07:52:55 -0700 (Sun, 12 Jun 2011)

Log Message

2011-06-12  Patrick Gansterer  <[email protected]>

        Unreviewed. Build fix for !ENABLE(JIT) after r88604.

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

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (88613 => 88614)


--- trunk/Source/_javascript_Core/ChangeLog	2011-06-12 12:40:40 UTC (rev 88613)
+++ trunk/Source/_javascript_Core/ChangeLog	2011-06-12 14:52:55 UTC (rev 88614)
@@ -1,3 +1,10 @@
+2011-06-12  Patrick Gansterer  <[email protected]>
+
+        Unreviewed. Build fix for !ENABLE(JIT) after r88604.
+
+        * bytecode/CodeBlock.cpp:
+        (JSC::CodeBlock::visitAggregate):
+
 2011-06-11  Gavin Barraclough  <[email protected]>
 
         Reviewed by Darin Adler.

Modified: trunk/Source/_javascript_Core/bytecode/CodeBlock.cpp (88613 => 88614)


--- trunk/Source/_javascript_Core/bytecode/CodeBlock.cpp	2011-06-12 12:40:40 UTC (rev 88613)
+++ trunk/Source/_javascript_Core/bytecode/CodeBlock.cpp	2011-06-12 14:52:55 UTC (rev 88614)
@@ -1479,9 +1479,11 @@
         visitor.append(&m_functionExprs[i]);
     for (size_t i = 0; i < m_functionDecls.size(); ++i)
         visitor.append(&m_functionDecls[i]);
+#if ENABLE(JIT)
     for (unsigned i = 0; i < numberOfCallLinkInfos(); ++i)
         if (callLinkInfo(i).isLinked())
             visitor.append(&callLinkInfo(i).callee);
+#endif
 #if ENABLE(INTERPRETER)
     for (size_t size = m_propertyAccessInstructions.size(), i = 0; i < size; ++i)
         visitStructures(visitor, &m_instructions[m_propertyAccessInstructions[i]]);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to