Changeset 97568 in webkit


Ignore:
Timestamp:
Oct 15, 2011 5:54:05 PM (12 years ago)
Author:
commit-queue@webkit.org
Message:

The s390 and s390x architectures both use 64-bit double type
that conforms to the IEEE-754 standard.

https://bugs.webkit.org/show_bug.cgi?id=69940

Patch by Dan Horák <dan@danny.cz> on 2011-10-15
Reviewed by Gavin Barraclough.

  • wtf/dtoa/utils.h:
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r97564 r97568  
     12011-10-15  Dan Horák <dan@danny.cz>
     2
     3        The s390 and s390x architectures both use 64-bit double type
     4        that conforms to the IEEE-754 standard.
     5
     6        https://bugs.webkit.org/show_bug.cgi?id=69940
     7
     8        Reviewed by Gavin Barraclough.
     9
     10        * wtf/dtoa/utils.h:
     11
    1122011-10-14  Filip Pizlo  <fpizlo@apple.com>
    213
  • trunk/Source/JavaScriptCore/wtf/dtoa/utils.h

    r95901 r97568  
    5050defined(_MIPS_ARCH_MIPS32R2)
    5151#define DOUBLE_CONVERSION_CORRECT_DOUBLE_OPERATIONS 1
    52 #elif CPU(MIPS) || CPU(PPC) || CPU(PPC64) || OS(WINCE) || CPU(SH4)
     52#elif CPU(MIPS) || CPU(PPC) || CPU(PPC64) || OS(WINCE) || CPU(SH4) || CPU(S390) || CPU(S390X)
    5353#define DOUBLE_CONVERSION_CORRECT_DOUBLE_OPERATIONS 1
    5454#elif defined(_M_IX86) || defined(__i386__)
Note: See TracChangeset for help on using the changeset viewer.