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

Log Message

Unreviewed, fix Windows.

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

Modified Paths

Diff

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


--- trunk/Source/_javascript_Core/ChangeLog	2013-10-30 20:14:48 UTC (rev 158307)
+++ trunk/Source/_javascript_Core/ChangeLog	2013-10-30 20:22:40 UTC (rev 158308)
@@ -2,6 +2,13 @@
 
         Unreviewed, fix Windows.
 
+        * bytecode/CodeBlock.cpp:
+        (JSC::CodeBlock::jettison):
+
+2013-10-30  Filip Pizlo  <fpi...@apple.com>
+
+        Unreviewed, fix Windows.
+
         * bytecode/CodeBlock.h:
         (JSC::CodeBlock::addFrequentExitSite):
 

Modified: trunk/Source/_javascript_Core/bytecode/CodeBlock.cpp (158307 => 158308)


--- trunk/Source/_javascript_Core/bytecode/CodeBlock.cpp	2013-10-30 20:14:48 UTC (rev 158307)
+++ trunk/Source/_javascript_Core/bytecode/CodeBlock.cpp	2013-10-30 20:22:40 UTC (rev 158308)
@@ -2809,6 +2809,7 @@
 
 void CodeBlock::jettison(ReoptimizationMode mode)
 {
+#if ENABLE(DFG_JIT)
     if (DFG::shouldShowDisassembly()) {
         dataLog("Jettisoning ", *this);
         if (mode == CountReoptimization)
@@ -2854,6 +2855,9 @@
     alternative()->install();
     if (DFG::shouldShowDisassembly())
         dataLog("    Did install baseline version of ", *this, "\n");
+#else // ENABLE(DFG_JIT)
+    UNREACHABLE_FOR_PLATFORM();
+#endif // ENABLE(DFG_JIT)
 }
 #endif
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to