]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
mips: fix typo (IRType/IRTemp)
authorPetar Jovanovic <mips32r2@gmail.com>
Fri, 29 Aug 2014 17:05:40 +0000 (17:05 +0000)
committerPetar Jovanovic <mips32r2@gmail.com>
Fri, 29 Aug 2014 17:05:40 +0000 (17:05 +0000)
Fix typo (IRType used instead of IRTemp).

git-svn-id: svn://svn.valgrind.org/vex/trunk@2936

VEX/priv/guest_mips_toIR.c

index 57be41eb9bbb5a827212abb3905a43dd53bc3ac0..db04ad4f3797ee213ce7367f9cae98bb4cd73842 100644 (file)
@@ -2249,7 +2249,7 @@ static Bool dis_instr_CVM ( UInt theInstr )
          switch(opc2) { 
             case 0x03: {  /* DMUL rd, rs, rt */
                DIP("dmul r%d, r%d, r%d", regRd, regRs, regRt);
-               IRType t0 = newTemp(Ity_I128);
+               IRTemp t0 = newTemp(Ity_I128);
                assign(t0, binop(Iop_MullU64, getIReg(regRs), getIReg(regRt)));
                putIReg(regRd, unop(Iop_128to64, mkexpr(t0)));
                break;