Title: [158307] trunk/Source/_javascript_Core
Revision
158307
Author
fpi...@apple.com
Date
2013-10-30 13:14:48 -0700 (Wed, 30 Oct 2013)

Log Message

Unreviewed, fix Windows.

* bytecode/CodeBlock.h:
(JSC::CodeBlock::addFrequentExitSite):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (158306 => 158307)


--- trunk/Source/_javascript_Core/ChangeLog	2013-10-30 20:13:08 UTC (rev 158306)
+++ trunk/Source/_javascript_Core/ChangeLog	2013-10-30 20:14:48 UTC (rev 158307)
@@ -1,3 +1,10 @@
+2013-10-30  Filip Pizlo  <fpi...@apple.com>
+
+        Unreviewed, fix Windows.
+
+        * bytecode/CodeBlock.h:
+        (JSC::CodeBlock::addFrequentExitSite):
+
 2013-10-29  Filip Pizlo  <fpi...@apple.com>
 
         Add InvalidationPoints to the DFG and use them for all watchpoints

Modified: trunk/Source/_javascript_Core/bytecode/CodeBlock.h (158306 => 158307)


--- trunk/Source/_javascript_Core/bytecode/CodeBlock.h	2013-10-30 20:13:08 UTC (rev 158306)
+++ trunk/Source/_javascript_Core/bytecode/CodeBlock.h	2013-10-30 20:14:48 UTC (rev 158307)
@@ -585,7 +585,12 @@
     {
         return m_lazyOperandValueProfiles;
     }
-#endif
+#else // ENABLE(DFG_JIT)
+    bool addFrequentExitSite(const DFG::FrequentExitSite&)
+    {
+        return false;
+    }
+#endif // ENABLE(DFG_JIT)
 
     // Constant Pool
 #if ENABLE(DFG_JIT)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to