Title: [240186] trunk/Source/_javascript_Core
Revision
240186
Author
ddkil...@apple.com
Date
2019-01-18 16:08:21 -0800 (Fri, 18 Jan 2019)

Log Message

Follow-up: Gigacages should start allocations from a slide
<https://bugs.webkit.org/show_bug.cgi?id=193523>
<rdar://problem/44958707>

* ftl/FTLLowerDFGToB3.cpp:
(JSC::FTL::DFG::LowerDFGToB3::caged): Add UNUSED_PARAM(kind) to
fix the build.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (240185 => 240186)


--- trunk/Source/_javascript_Core/ChangeLog	2019-01-18 23:45:42 UTC (rev 240185)
+++ trunk/Source/_javascript_Core/ChangeLog	2019-01-19 00:08:21 UTC (rev 240186)
@@ -1,3 +1,13 @@
+2019-01-18  David Kilzer  <ddkil...@apple.com>
+
+        Follow-up: Gigacages should start allocations from a slide
+        <https://bugs.webkit.org/show_bug.cgi?id=193523>
+        <rdar://problem/44958707>
+
+        * ftl/FTLLowerDFGToB3.cpp:
+        (JSC::FTL::DFG::LowerDFGToB3::caged): Add UNUSED_PARAM(kind) to
+        fix the build.
+
 2019-01-18  Jer Noble  <jer.no...@apple.com>
 
         SDK_VARIANT build destinations should be separate from non-SDK_VARIANT builds

Modified: trunk/Source/_javascript_Core/ftl/FTLLowerDFGToB3.cpp (240185 => 240186)


--- trunk/Source/_javascript_Core/ftl/FTLLowerDFGToB3.cpp	2019-01-18 23:45:42 UTC (rev 240185)
+++ trunk/Source/_javascript_Core/ftl/FTLLowerDFGToB3.cpp	2019-01-19 00:08:21 UTC (rev 240186)
@@ -13882,6 +13882,7 @@
         // https://bugs.webkit.org/show_bug.cgi?id=175493
         return m_out.opaque(result);
 #else
+        UNUSED_PARAM(kind);
         return ptr;
 #endif
     }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to