Title: [186427] releases/WebKitGTK/webkit-2.8/Source/WTF
Revision
186427
Author
[email protected]
Date
2015-07-07 02:17:11 -0700 (Tue, 07 Jul 2015)

Log Message

Merge r185863 - [WTF] Platform.h: use _ABI64 instead of _MIPS_SIM_ABI64 to determine MIPS N64
https://bugs.webkit.org/show_bug.cgi?id=145113

Patch by YunQiang Su <[email protected]> on 2015-06-22
Reviewed by Csaba Osztrogonác.

* wtf/Platform.h:

Modified Paths

Diff

Modified: releases/WebKitGTK/webkit-2.8/Source/WTF/ChangeLog (186426 => 186427)


--- releases/WebKitGTK/webkit-2.8/Source/WTF/ChangeLog	2015-07-07 09:16:11 UTC (rev 186426)
+++ releases/WebKitGTK/webkit-2.8/Source/WTF/ChangeLog	2015-07-07 09:17:11 UTC (rev 186427)
@@ -1,3 +1,12 @@
+2015-06-22  YunQiang Su  <[email protected]>
+
+        [WTF] Platform.h: use _ABI64 instead of _MIPS_SIM_ABI64 to determine MIPS N64
+        https://bugs.webkit.org/show_bug.cgi?id=145113
+
+        Reviewed by Csaba Osztrogonác.
+
+        * wtf/Platform.h:
+
 2015-06-17  Andreas Kling  <[email protected]>
 
         SegmentedVector should waste less memory.

Modified: releases/WebKitGTK/webkit-2.8/Source/WTF/wtf/Platform.h (186426 => 186427)


--- releases/WebKitGTK/webkit-2.8/Source/WTF/wtf/Platform.h	2015-07-07 09:16:11 UTC (rev 186426)
+++ releases/WebKitGTK/webkit-2.8/Source/WTF/wtf/Platform.h	2015-07-07 09:17:11 UTC (rev 186427)
@@ -82,7 +82,7 @@
 
 /* CPU(MIPS) - MIPS 32-bit and 64-bit */
 #if (defined(mips) || defined(__mips__) || defined(MIPS) || defined(_MIPS_) || defined(__mips64))
-#if defined(_MIPS_SIM_ABI64) && (_MIPS_SIM == _MIPS_SIM_ABI64)
+#if defined(_ABI64) && (_MIPS_SIM == _ABI64)
 #define WTF_CPU_MIPS64 1
 #define WTF_MIPS_ARCH __mips64
 #else
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to