Title: [202099] trunk/Source/_javascript_Core
Revision
202099
Author
[email protected]
Date
2016-06-15 12:30:23 -0700 (Wed, 15 Jun 2016)

Log Message

Unreviewed GCC build fix after r202098.

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

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (202098 => 202099)


--- trunk/Source/_javascript_Core/ChangeLog	2016-06-15 19:20:23 UTC (rev 202098)
+++ trunk/Source/_javascript_Core/ChangeLog	2016-06-15 19:30:23 UTC (rev 202099)
@@ -1,3 +1,10 @@
+2016-06-15  Chris Dumez  <[email protected]>
+
+        Unreviewed GCC build fix after r202098.
+
+        * bytecode/CodeBlock.cpp:
+        (JSC::CodeBlock::thresholdForJIT):
+
 2016-06-14  Geoffrey Garen  <[email protected]>
 
         compilation policy should adapt to past behavior

Modified: trunk/Source/_javascript_Core/bytecode/CodeBlock.cpp (202098 => 202099)


--- trunk/Source/_javascript_Core/bytecode/CodeBlock.cpp	2016-06-15 19:20:23 UTC (rev 202098)
+++ trunk/Source/_javascript_Core/bytecode/CodeBlock.cpp	2016-06-15 19:30:23 UTC (rev 202099)
@@ -4448,6 +4448,8 @@
     case TrueTriState:
         return threshold / 2;
     }
+    ASSERT_NOT_REACHED();
+    return threshold;
 }
 
 void CodeBlock::jitAfterWarmUp()
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to