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:
parent
2be8f86286
commit
6b8f7294b3
18 changed files with 34 additions and 44 deletions
|
@ -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_);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue