Global: Remove ARM64 define.

Was barely used anymore, and some users are specifying it when it's not
the case, so better to detect consistently.
This commit is contained in:
Unknown W. Brackets 2020-08-29 08:45:50 -07:00
parent 2be8f86286
commit 6b8f7294b3
18 changed files with 34 additions and 44 deletions

View file

@ -18,6 +18,7 @@
#include <algorithm>
#include <cstdio>
#include "ppsspp_config.h"
#include "base/basictypes.h"
#include "Common/Log.h"
@ -1345,11 +1346,11 @@ std::string VertexDecoder::GetString(DebugShaderStringType stringType) {
if (!jitted_)
return "Not compiled";
std::vector<std::string> lines;
#if defined(ARM64)
#if PPSSPP_ARCH(ARM64)
lines = DisassembleArm64((const u8 *)jitted_, jittedSize_);
#elif defined(ARM)
#elif PPSSPP_ARCH(ARM)
lines = DisassembleArm2((const u8 *)jitted_, jittedSize_);
#elif defined(MIPS)
#elif PPSSPP_ARCH(MIPS) || PPSSPP_ARCH(MIPS64)
// No MIPS disassembler defined
#else
lines = DisassembleX86((const u8 *)jitted_, jittedSize_);