Title: [117905] trunk/Source/_javascript_Core
Revision
117905
Author
[email protected]
Date
2012-05-21 22:39:37 -0700 (Mon, 21 May 2012)

Log Message

DFG should be able to compute dominators
https://bugs.webkit.org/show_bug.cgi?id=85269

Unreviewed trivial 32 bit buildfix after r117861.

* dfg/DFGGraph.cpp:
(JSC::DFG::Graph::dump):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (117904 => 117905)


--- trunk/Source/_javascript_Core/ChangeLog	2012-05-22 05:32:29 UTC (rev 117904)
+++ trunk/Source/_javascript_Core/ChangeLog	2012-05-22 05:39:37 UTC (rev 117905)
@@ -1,3 +1,13 @@
+2012-05-21  Csaba Osztrogonác  <[email protected]>
+
+        DFG should be able to compute dominators
+        https://bugs.webkit.org/show_bug.cgi?id=85269
+
+        Unreviewed trivial 32 bit buildfix after r117861.
+
+        * dfg/DFGGraph.cpp:
+        (JSC::DFG::Graph::dump):
+
 2012-05-21  Filip Pizlo  <[email protected]>
 
         DFG should be able to compute dominators

Modified: trunk/Source/_javascript_Core/dfg/DFGGraph.cpp (117904 => 117905)


--- trunk/Source/_javascript_Core/dfg/DFGGraph.cpp	2012-05-22 05:32:29 UTC (rev 117904)
+++ trunk/Source/_javascript_Core/dfg/DFGGraph.cpp	2012-05-22 05:39:37 UTC (rev 117905)
@@ -288,14 +288,14 @@
             for (size_t i = 0; i < m_blocks.size(); ++i) {
                 if (!m_dominators.dominates(i, b))
                     continue;
-                dataLog(" #%lu", i);
+                dataLog(" #%lu", static_cast<unsigned long>(i));
             }
             dataLog("\n");
             dataLog("  Dominates:");
             for (size_t i = 0; i < m_blocks.size(); ++i) {
                 if (!m_dominators.dominates(b, i))
                     continue;
-                dataLog(" #%lu", i);
+                dataLog(" #%lu", static_cast<unsigned long>(i));
             }
             dataLog("\n");
         }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to