Browse Source
Merge pull request #10933 from merryhime/dunno
arm_dynarmic_32: Remove disabling of block linking on arm64
pull/15/merge
liamwhite
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
0 additions and
5 deletions
-
src/core/arm/dynarmic/arm_dynarmic_32.cpp
|
|
@ -322,11 +322,6 @@ std::shared_ptr<Dynarmic::A32::Jit> ARM_Dynarmic_32::MakeJit(Common::PageTable* |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
#ifdef ARCHITECTURE_arm64
|
|
|
|
|
|
// TODO: remove when fixed in dynarmic
|
|
|
|
|
|
config.optimizations &= ~Dynarmic::OptimizationFlag::BlockLinking; |
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
return std::make_unique<Dynarmic::A32::Jit>(config); |
|
|
return std::make_unique<Dynarmic::A32::Jit>(config); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|