Title: [118330] trunk/Source/_javascript_Core
Revision
118330
Author
[email protected]
Date
2012-05-24 00:05:31 -0700 (Thu, 24 May 2012)

Log Message

Unreviewed 32 bit buildfix after r118325.

* dfg/DFGSpeculativeJIT32_64.cpp:
(JSC::DFG::SpeculativeJIT::fillSpeculateIntInternal): Use ASSERT_UNUSED instead ASSERT.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (118329 => 118330)


--- trunk/Source/_javascript_Core/ChangeLog	2012-05-24 07:03:15 UTC (rev 118329)
+++ trunk/Source/_javascript_Core/ChangeLog	2012-05-24 07:05:31 UTC (rev 118330)
@@ -1,3 +1,10 @@
+2012-05-24  Csaba Osztrogonác  <[email protected]>
+
+        Unreviewed 32 bit buildfix after r118325.
+
+        * dfg/DFGSpeculativeJIT32_64.cpp:
+        (JSC::DFG::SpeculativeJIT::fillSpeculateIntInternal): Use ASSERT_UNUSED instead ASSERT.
+
 2012-05-23  Filip Pizlo  <[email protected]>
 
         DFG operationTearOffActivation should return after handling the null activation case

Modified: trunk/Source/_javascript_Core/dfg/DFGSpeculativeJIT32_64.cpp (118329 => 118330)


--- trunk/Source/_javascript_Core/dfg/DFGSpeculativeJIT32_64.cpp	2012-05-24 07:03:15 UTC (rev 118329)
+++ trunk/Source/_javascript_Core/dfg/DFGSpeculativeJIT32_64.cpp	2012-05-24 07:05:31 UTC (rev 118330)
@@ -1070,7 +1070,7 @@
         }
 
         DataFormat spillFormat = info.spillFormat();
-        ASSERT((spillFormat & DataFormatJS) || spillFormat == DataFormatInteger);
+        ASSERT_UNUSED(spillFormat, (spillFormat & DataFormatJS) || spillFormat == DataFormatInteger);
 
         // If we know this was spilled as an integer we can fill without checking.
         if (!isInt32Prediction(type))
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to