Merge pull request #5963 from JMC47/mtmsrfix

Fix JIT64 mtmsr issue after PIE support.
This commit is contained in:
Leo Lam 2017-08-22 22:12:14 +02:00 committed by GitHub
commit c12418788a
1 changed files with 1 additions and 1 deletions

View File

@ -403,7 +403,7 @@ void Jit64::mtmsr(UGeckoInstruction inst)
// external exceptions when going out of mtmsr in order to execute delayed
// interrupts as soon as possible.
TEST(32, PPCSTATE(msr), Imm32(0x8000));
FixupBranch eeDisabled = J_CC(CC_Z);
FixupBranch eeDisabled = J_CC(CC_Z, true);
TEST(32, PPCSTATE(Exceptions),
Imm32(EXCEPTION_EXTERNAL_INT | EXCEPTION_PERFORMANCE_MONITOR | EXCEPTION_DECREMENTER));