Changeset 185863 in webkit


Ignore:
Timestamp:
Jun 22, 2015 11:33:16 PM (9 years ago)
Author:
Csaba Osztrogonác
Message:

[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 <wzssyqa@gmail.com> on 2015-06-22
Reviewed by Csaba Osztrogonác.

  • wtf/Platform.h:
Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r185849 r185863  
     12015-06-22  YunQiang Su  <wzssyqa@gmail.com>
     2
     3        [WTF] Platform.h: use _ABI64 instead of _MIPS_SIM_ABI64 to determine MIPS N64
     4        https://bugs.webkit.org/show_bug.cgi?id=145113
     5
     6        Reviewed by Csaba Osztrogonác.
     7
     8        * wtf/Platform.h:
     9
    1102015-06-22  Anders Carlsson  <andersca@apple.com>
    211
  • trunk/Source/WTF/wtf/Platform.h

    r185802 r185863  
    8383/* CPU(MIPS) - MIPS 32-bit and 64-bit */
    8484#if (defined(mips) || defined(__mips__) || defined(MIPS) || defined(_MIPS_) || defined(__mips64))
    85 #if defined(_MIPS_SIM_ABI64) && (_MIPS_SIM == _MIPS_SIM_ABI64)
     85#if defined(_ABI64) && (_MIPS_SIM == _ABI64)
    8686#define WTF_CPU_MIPS64 1
    8787#define WTF_MIPS_ARCH __mips64
Note: See TracChangeset for help on using the changeset viewer.