Title: [260179] trunk/Source/WTF
Revision
260179
Author
[email protected]
Date
2020-04-16 04:45:15 -0700 (Thu, 16 Apr 2020)

Log Message

Unreviewed, set CeilingOnPageSize for MIPS64

This fixes a build failure ("Must set CeilingOnPageSize in
PageBlock.h").

* wtf/PageBlock.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (260178 => 260179)


--- trunk/Source/WTF/ChangeLog	2020-04-16 11:43:24 UTC (rev 260178)
+++ trunk/Source/WTF/ChangeLog	2020-04-16 11:45:15 UTC (rev 260179)
@@ -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-04-15  Chris Dumez  <[email protected]>
 
         [IPC Hardening] MachMessage::messageSize() should use checked arithmetic

Modified: trunk/Source/WTF/wtf/PageBlock.h (260178 => 260179)


--- trunk/Source/WTF/wtf/PageBlock.h	2020-04-16 11:43:24 UTC (rev 260178)
+++ trunk/Source/WTF/wtf/PageBlock.h	2020-04-16 11:45:15 UTC (rev 260179)
@@ -49,7 +49,7 @@
 // Use 64 KiB for any unknown CPUs to be conservative.
 #if OS(DARWIN) || PLATFORM(PLAYSTATION)
 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

Reply via email to