From: Petar Jovanovic Date: Thu, 4 Sep 2014 17:34:56 +0000 (+0000) Subject: mips64: fix jmpKind for BLTZ and BGEZ X-Git-Tag: svn/VALGRIND_3_10_1^2~28 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=82cc01e867f26021e233ed60e294ee027c7e90c2;p=thirdparty%2Fvalgrind.git mips64: fix jmpKind for BLTZ and BGEZ As spotted by Maran Pakkirisamy, jump kind for BLTZ and BGEZ should be Ijk_Boring and not Ijk_Call. git-svn-id: svn://svn.valgrind.org/vex/trunk@2944 --- diff --git a/VEX/priv/guest_mips_toIR.c b/VEX/priv/guest_mips_toIR.c index 908f2c83fd..26d3c71e63 100644 --- a/VEX/priv/guest_mips_toIR.c +++ b/VEX/priv/guest_mips_toIR.c @@ -2110,7 +2110,7 @@ static Bool dis_instr_branch ( UInt theInstr, DisResult * dres, eCond = binop(mkSzOp(ty, Iop_CmpNE8), mkexpr(tmpLt), mkexpr(tmpReg0)); - jmpKind = Ijk_Call; + jmpKind = Ijk_Boring; break; } @@ -2125,7 +2125,7 @@ static Bool dis_instr_branch ( UInt theInstr, DisResult * dres, eCond = binop(mkSzOp(ty, Iop_CmpEQ8), mkexpr(tmpLt), mkexpr(tmpReg0)); - jmpKind = Ijk_Call; + jmpKind = Ijk_Boring; break; }