Fix missed renaming in NativeMIPS.cpp in patch for bug 560926 (r=rreitmai+)

Bug 560926 - Add support for arithmetic with branch on overflow

--HG--
extra : convert_revision : 8c6a61c935172f56eb7c660b476a5516cd3f04ab
This commit is contained in:
William Maddox 2010-05-27 12:53:35 -07:00
parent ada62b6b46
commit 7cfb42d6ca

View File

@ -1481,14 +1481,14 @@ namespace nanojit
return patch; return patch;
} }
void Assembler::asm_branch_xov(LOpcode op, NIns* target) void Assembler::asm_branch_ov(LOpcode op, NIns* target)
{ {
USE(op); USE(op);
NanoAssert(target != NULL); NanoAssert(target != NULL);
(void) asm_bxx(true, LIR_eqi, AT, ZERO, target); (void) asm_bxx(true, LIR_eqi, AT, ZERO, target);
TAG("asm_branch_xov(op=%s, target=%p)", lirNames[op], target); TAG("asm_branch_ov(op=%s, target=%p)", lirNames[op], target);
} }
NIns* Assembler::asm_branch(bool branchOnFalse, LIns *cond, NIns * const targ) NIns* Assembler::asm_branch(bool branchOnFalse, LIns *cond, NIns * const targ)