x87_ops: Stop using _WIN32 to check MSVC x86

This commit is contained in:
GH Cao
2020-04-11 03:00:37 +08:00
committed by David Hrdlička
parent 8c0bafd16f
commit 4aa066870d
2 changed files with 2 additions and 2 deletions

View File

@@ -354,7 +354,7 @@ static __inline uint16_t x87_compare(double a, double b)
static __inline uint16_t x87_ucompare(double a, double b)
{
#if defined i386 || defined __i386 || defined __i386__ || defined _X86_ || defined WIN32 || defined _WIN32 || defined _WIN32 || defined __amd64__
#if defined i386 || defined __i386 || defined __i386__ || defined _X86_ || defined _M_IX86 || defined _M_X64 || defined __amd64__
uint32_t result;
#ifndef _MSC_VER