Fix most ARM warnings

This commit is contained in:
Ryan Houdek
2013-07-05 19:56:15 -05:00
parent cdfd7905a0
commit 7d6b36bf73
6 changed files with 12 additions and 11 deletions

View File

@ -86,7 +86,7 @@ bool TryMakeOperand2_AllowNegation(s32 imm, Operand2 &op2, bool *negated)
Operand2 AssumeMakeOperand2(u32 imm) {
Operand2 op2;
bool result = TryMakeOperand2(imm, op2);
_dbg_assert_msg_(JIT, result, "Could not make assumed Operand2.");
_assert_msg_(DYNA_REC, result, "Could not make assumed Operand2.");
return op2;
}