Title: [260626] releases/WebKitGTK/webkit-2.28/Source/WTF
- Revision
- 260626
- Author
- [email protected]
- Date
- 2020-04-24 02:20:27 -0700 (Fri, 24 Apr 2020)
Log Message
Merge r260179 - Unreviewed, set CeilingOnPageSize for MIPS64
This fixes a build failure ("Must set CeilingOnPageSize in
PageBlock.h").
* wtf/PageBlock.h:
Modified Paths
Diff
Modified: releases/WebKitGTK/webkit-2.28/Source/WTF/ChangeLog (260625 => 260626)
--- releases/WebKitGTK/webkit-2.28/Source/WTF/ChangeLog 2020-04-24 08:27:00 UTC (rev 260625)
+++ releases/WebKitGTK/webkit-2.28/Source/WTF/ChangeLog 2020-04-24 09:20:27 UTC (rev 260626)
@@ -1,3 +1,12 @@
+2020-04-16 Alberto Garcia <[email protected]>
+
+ Unreviewed, set CeilingOnPageSize for MIPS64
+
+ This fixes a build failure ("Must set CeilingOnPageSize in
+ PageBlock.h").
+
+ * wtf/PageBlock.h:
+
2020-03-27 Michael Catanzaro <[email protected]>
REGRESSION(r258857): Broke aarch64 JSCOnly CI
Modified: releases/WebKitGTK/webkit-2.28/Source/WTF/wtf/PageBlock.h (260625 => 260626)
--- releases/WebKitGTK/webkit-2.28/Source/WTF/wtf/PageBlock.h 2020-04-24 08:27:00 UTC (rev 260625)
+++ releases/WebKitGTK/webkit-2.28/Source/WTF/wtf/PageBlock.h 2020-04-24 09:20:27 UTC (rev 260626)
@@ -49,7 +49,7 @@
// Use 64 KiB for any unknown CPUs to be conservative.
#if OS(DARWIN)
constexpr size_t CeilingOnPageSize = 16 * KB;
-#elif OS(WINDOWS) || CPU(MIPS) || CPU(X86) || CPU(X86_64) || CPU(ARM) || CPU(ARM64)
+#elif OS(WINDOWS) || CPU(MIPS) || CPU(MIPS64) || CPU(X86) || CPU(X86_64) || CPU(ARM) || CPU(ARM64)
constexpr size_t CeilingOnPageSize = 4 * KB;
#elif CPU(UNKNOWN) || CPU(PPC) || CPU(PPC64) || CPU(PPC64LE)
constexpr size_t CeilingOnPageSize = 64 * KB;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes