Fix another couple of arch define things

This commit is contained in:
Henrik Rydgard 2016-11-03 22:21:25 +01:00
parent ea5e9f8c35
commit 5df685fa07
2 changed files with 2 additions and 2 deletions

View file

@ -51,7 +51,7 @@ namespace MIPSComp {
continueMaxInstructions = 300; continueMaxInstructions = 300;
useStaticAlloc = false; useStaticAlloc = false;
#ifdef ARM64 #if PPSSPP_ARCH(ARM64)
useStaticAlloc = true; useStaticAlloc = true;
#endif #endif
} }

View file

@ -30,7 +30,7 @@ u32 QuickTexHashNEON(const void *checkp, u32 size) {
__builtin_prefetch(checkp, 0, 0); __builtin_prefetch(checkp, 0, 0);
if (((intptr_t)checkp & 0xf) == 0 && (size & 0x3f) == 0) { if (((intptr_t)checkp & 0xf) == 0 && (size & 0x3f) == 0) {
#if defined(IOS) || defined(ARM64) #if defined(IOS) || PPSSPP_ARCH(ARM64)
uint32x4_t cursor = vdupq_n_u32(0); uint32x4_t cursor = vdupq_n_u32(0);
uint16x8_t cursor2 = vld1q_u16(QuickTexHashInitial); uint16x8_t cursor2 = vld1q_u16(QuickTexHashInitial);
uint16x8_t update = vdupq_n_u16(0x2455U); uint16x8_t update = vdupq_n_u16(0x2455U);