Title: [148803] branches/dfgFourthTier/Source/_javascript_Core
Revision
148803
Author
[email protected]
Date
2013-04-20 21:38:29 -0700 (Sat, 20 Apr 2013)

Log Message

Unreviewed, 32-bit build fix.

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

Modified Paths

Diff

Modified: branches/dfgFourthTier/Source/_javascript_Core/ChangeLog (148802 => 148803)


--- branches/dfgFourthTier/Source/_javascript_Core/ChangeLog	2013-04-21 03:32:31 UTC (rev 148802)
+++ branches/dfgFourthTier/Source/_javascript_Core/ChangeLog	2013-04-21 04:38:29 UTC (rev 148803)
@@ -1,3 +1,10 @@
+2013-04-20  Filip Pizlo  <[email protected]>
+
+        Unreviewed, 32-bit build fix.
+
+        * bytecode/CodeBlock.cpp:
+        (JSC::CodeBlock::tallyFrequentExitSites):
+
 2013-04-17  Filip Pizlo  <[email protected]>
 
         fourthTier: all inline caches should thread-safe enough to allow a concurrent compilation thread to read them safely

Modified: branches/dfgFourthTier/Source/_javascript_Core/bytecode/CodeBlock.cpp (148802 => 148803)


--- branches/dfgFourthTier/Source/_javascript_Core/bytecode/CodeBlock.cpp	2013-04-21 03:32:31 UTC (rev 148802)
+++ branches/dfgFourthTier/Source/_javascript_Core/bytecode/CodeBlock.cpp	2013-04-21 04:38:29 UTC (rev 148803)
@@ -3271,6 +3271,7 @@
         break;
     }
         
+#if ENABLE(FTL_JIT)
     case JITCode::FTLJIT: {
         // There is no easy way to avoid duplicating this code since the FTL::JITCode::osrExit
         // vector contains a totally different type, that just so happens to behave like
@@ -3288,7 +3289,8 @@
 #endif
         }
         break;
-    }        
+    }
+#endif // ENABLE(FTL_JIT)
         
     default:
         RELEASE_ASSERT_NOT_REACHED();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to