JitArm64: Don't emit normal block exit for branch-to-self instructions

The normal block exit is redundant as the exception exit will jump out of
the block first, meaning this code is never executed.
This commit is contained in:
Stenzek 2016-11-15 00:28:14 +10:00
parent c657134c86
commit e83bf5705a
1 changed files with 1 additions and 0 deletions

View File

@ -105,6 +105,7 @@ void JitArm64::bx(UGeckoInstruction inst)
gpr.Unlock(WA);
WriteExceptionExit(js.compilerPC);
return;
}
WriteExit(destination);