Merge pull request #671 from driver1998/clang

Enable New Dynarec on Windows ARM
This commit is contained in:
OBattler
2020-04-05 15:51:56 +02:00
committed by GitHub
13 changed files with 18 additions and 19 deletions

View File

@@ -411,7 +411,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_AMD64 || defined __amd64__
uint32_t result;
#ifndef _MSC_VER