Title: [209654] trunk/Source/_javascript_Core
Revision
209654
Author
msab...@apple.com
Date
2016-12-09 23:43:50 -0800 (Fri, 09 Dec 2016)

Log Message

Unreviewed build fix for 32 bit builds.

* dfg/DFGMinifiedNode.h:
(JSC::DFG::MinifiedNode::argumentIndex): Added a static_cast<unsigned>().

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (209653 => 209654)


--- trunk/Source/_javascript_Core/ChangeLog	2016-12-10 07:32:38 UTC (rev 209653)
+++ trunk/Source/_javascript_Core/ChangeLog	2016-12-10 07:43:50 UTC (rev 209654)
@@ -1,5 +1,12 @@
 2016-12-09  Michael Saboff  <msab...@apple.com>
 
+        Unreviewed build fix for 32 bit builds.
+
+        * dfg/DFGMinifiedNode.h:
+        (JSC::DFG::MinifiedNode::argumentIndex): Added a static_cast<unsigned>().
+
+2016-12-09  Michael Saboff  <msab...@apple.com>
+
         JSVALUE64: Pass arguments in platform argument registers when making _javascript_ calls
         https://bugs.webkit.org/show_bug.cgi?id=160355
 

Modified: trunk/Source/_javascript_Core/dfg/DFGMinifiedNode.h (209653 => 209654)


--- trunk/Source/_javascript_Core/dfg/DFGMinifiedNode.h	2016-12-10 07:32:38 UTC (rev 209653)
+++ trunk/Source/_javascript_Core/dfg/DFGMinifiedNode.h	2016-12-10 07:43:50 UTC (rev 209654)
@@ -75,7 +75,7 @@
 
     bool hasArgumentIndex() const { return hasArgumentIndex(m_op); }
 
-    unsigned argumentIndex() const { return m_info; }
+    unsigned argumentIndex() const { return static_cast<unsigned>(m_info); }
     
     static MinifiedID getID(MinifiedNode* node) { return node->id(); }
     static bool compareByNodeIndex(const MinifiedNode& a, const MinifiedNode& b)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to