Title: [256096] trunk/Source/WTF
Revision
256096
Author
[email protected]
Date
2020-02-08 17:29:05 -0800 (Sat, 08 Feb 2020)

Log Message

Migrate definition of USE_PLATFORM_REGISTERS_WITH_PROFILE to PlatformUse.h
https://bugs.webkit.org/show_bug.cgi?id=207428

Reviewed by Tim Horton.

* wtf/PlatformUse.h:
Move definition of USE_PLATFORM_REGISTERS_WITH_PROFILE from AdditionalFeatureDefines.h, where 
it did not belong.

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (256095 => 256096)


--- trunk/Source/WTF/ChangeLog	2020-02-09 01:11:36 UTC (rev 256095)
+++ trunk/Source/WTF/ChangeLog	2020-02-09 01:29:05 UTC (rev 256096)
@@ -1,3 +1,14 @@
+2020-02-08  Sam Weinig  <[email protected]>
+
+        Migrate definition of USE_PLATFORM_REGISTERS_WITH_PROFILE to PlatformUse.h
+        https://bugs.webkit.org/show_bug.cgi?id=207428
+
+        Reviewed by Tim Horton.
+
+        * wtf/PlatformUse.h:
+        Move definition of USE_PLATFORM_REGISTERS_WITH_PROFILE from AdditionalFeatureDefines.h, where 
+        it did not belong.
+
 2020-02-08  Yusuke Suzuki  <[email protected]>
 
         [WTF] Try using 75% load factor for HashTable

Modified: trunk/Source/WTF/wtf/PlatformUse.h (256095 => 256096)


--- trunk/Source/WTF/wtf/PlatformUse.h	2020-02-09 01:11:36 UTC (rev 256095)
+++ trunk/Source/WTF/wtf/PlatformUse.h	2020-02-09 01:29:05 UTC (rev 256096)
@@ -308,6 +308,10 @@
 #define USE_BMALLOC_MEMORY_FOOTPRINT_API 1
 #endif
 
+#if !defined(USE_PLATFORM_REGISTERS_WITH_PROFILE) && OS(DARWIN) && CPU(ARM64) && defined(__LP64__)
+#define USE_PLATFORM_REGISTERS_WITH_PROFILE 1
+#endif
+
 #if OS(DARWIN) && !USE(PLATFORM_REGISTERS_WITH_PROFILE) && CPU(ARM64)
 #define USE_DARWIN_REGISTER_MACROS 1
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to