Title: [117629] trunk/Source/_javascript_Core
Revision
117629
Author
[email protected]
Date
2012-05-18 14:36:08 -0700 (Fri, 18 May 2012)

Log Message

Fix build for Qt by using ASSERT_UNUSED in DFGSpeculativeJIT
https://bugs.webkit.org/show_bug.cgi?id=86902

Reviewed by Andreas Kling.

* dfg/DFGSpeculativeJIT.h:
(JSC::DFG::SpeculativeJIT::silentSavePlanForGPR):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (117628 => 117629)


--- trunk/Source/_javascript_Core/ChangeLog	2012-05-18 21:30:52 UTC (rev 117628)
+++ trunk/Source/_javascript_Core/ChangeLog	2012-05-18 21:36:08 UTC (rev 117629)
@@ -1,3 +1,13 @@
+2012-05-18  Caio Marcelo de Oliveira Filho  <[email protected]>
+
+        Fix build for Qt by using ASSERT_UNUSED in DFGSpeculativeJIT
+        https://bugs.webkit.org/show_bug.cgi?id=86902
+
+        Reviewed by Andreas Kling.
+
+        * dfg/DFGSpeculativeJIT.h:
+        (JSC::DFG::SpeculativeJIT::silentSavePlanForGPR):
+
 2012-04-16  Filip Pizlo  <[email protected]>
 
         DFG should have out-of-line slow paths

Modified: trunk/Source/_javascript_Core/dfg/DFGSpeculativeJIT.h (117628 => 117629)


--- trunk/Source/_javascript_Core/dfg/DFGSpeculativeJIT.h	2012-05-18 21:30:52 UTC (rev 117628)
+++ trunk/Source/_javascript_Core/dfg/DFGSpeculativeJIT.h	2012-05-18 21:36:08 UTC (rev 117629)
@@ -432,7 +432,7 @@
             ASSERT(info.gpr() == source);
             if (node.hasConstant()) {
                 JSValue value = valueOfJSConstant(nodeIndex);
-                ASSERT(value.isCell());
+                ASSERT_UNUSED(value, value.isCell());
                 fillAction = SetCellConstant;
             } else {
 #if USE(JSVALUE64)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to