Title: [191046] trunk/Source/_javascript_Core
Revision
191046
Author
mark....@apple.com
Date
2015-10-14 09:23:16 -0700 (Wed, 14 Oct 2015)

Log Message

Speculative build fix: the CallSiteIndex constructor is explicit and requires an uint32_t.

Not Reviewed.

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

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (191045 => 191046)


--- trunk/Source/_javascript_Core/ChangeLog	2015-10-14 12:59:11 UTC (rev 191045)
+++ trunk/Source/_javascript_Core/ChangeLog	2015-10-14 16:23:16 UTC (rev 191046)
@@ -1,3 +1,12 @@
+2015-10-14  Mark Lam  <mark....@apple.com>
+
+        Speculative build fix: the CallSiteIndex constructor is explicit and requires an uint32_t.
+
+        Not Reviewed.
+
+        * bytecode/CodeBlock.cpp:
+        (JSC::CodeBlock::newExceptionHandlingCallSiteIndex):
+
 2015-10-14  Commit Queue  <commit-qu...@webkit.org>
 
         Unreviewed, rolling out r191030.

Modified: trunk/Source/_javascript_Core/bytecode/CodeBlock.cpp (191045 => 191046)


--- trunk/Source/_javascript_Core/bytecode/CodeBlock.cpp	2015-10-14 12:59:11 UTC (rev 191045)
+++ trunk/Source/_javascript_Core/bytecode/CodeBlock.cpp	2015-10-14 16:23:16 UTC (rev 191046)
@@ -2957,7 +2957,7 @@
     // call sites outside the DFG/FTL inline caches.
     UNUSED_PARAM(originalCallSite);
     RELEASE_ASSERT_NOT_REACHED();
-    return CallSiteIndex(0);
+    return CallSiteIndex(0u);
 #endif
 }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to