mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
IRInterpreter: Enable some optimizations that accidentally were only enabled on non-ARM64.
This commit is contained in:
parent
e75e7a0e43
commit
7464b5f17b
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ IRJit::IRJit(MIPSState *mipsState) : frontend_(mipsState->HasDefaultPrefix()), m
|
|||
opts.unalignedLoadStore = false;
|
||||
opts.unalignedLoadStoreVec4 = true;
|
||||
opts.preferVec4 = cpu_info.RiscV_V;
|
||||
#elif PPSSPP_ARCH(ARM)
|
||||
#elif PPSSPP_ARCH(ARM) || PPSSPP_ARCH(ARM64)
|
||||
opts.unalignedLoadStore = (opts.disableFlags & (uint32_t)JitDisable::LSU_UNALIGNED) == 0;
|
||||
opts.unalignedLoadStoreVec4 = true;
|
||||
opts.preferVec4 = cpu_info.bASIMD || cpu_info.bNEON;
|
||||
|
|
Loading…
Add table
Reference in a new issue