Skip to content

Commit

Permalink
Reduce a ERROR_LOG_REPORT to a warning (vfpu branches in delay slots)
Browse files Browse the repository at this point in the history
  • Loading branch information
hrydgard committed Nov 11, 2017
1 parent 83e1cfb commit bd8067a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Core/MIPS/x86/CompBranch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,9 @@ void Jit::BranchVFPUFlag(MIPSOpcode op, Gen::CCFlags cc, bool likely)
{
CONDITIONAL_LOG;
if (js.inDelaySlot) {
ERROR_LOG_REPORT(JIT, "Branch in VFPU delay slot at %08x in block starting at %08x", GetCompilerPC(), js.blockStart);
// I think we can safely just warn-log this without reporting, it's pretty clear that this type
// of branch is ignored.
WARN_LOG(JIT, "Branch in VFPU delay slot at %08x in block starting at %08x", GetCompilerPC(), js.blockStart);
return;
}
int offset = _IMM16 << 2;
Expand Down

0 comments on commit bd8067a

Please sign in to comment.