From: Julian Seward Date: Fri, 9 Sep 2005 09:50:34 +0000 (+0000) Subject: rm unused vars in dis_int_ldst_str X-Git-Tag: svn/VALGRIND_3_1_1^2~114 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c5b602e111ecd576e0411117b3a9ce248a69e80f;p=thirdparty%2Fvalgrind.git rm unused vars in dis_int_ldst_str git-svn-id: svn://svn.valgrind.org/vex/trunk@1377 --- diff --git a/VEX/priv/guest-ppc32/toIR.c b/VEX/priv/guest-ppc32/toIR.c index 90900502e5..1300ef4284 100644 --- a/VEX/priv/guest-ppc32/toIR.c +++ b/VEX/priv/guest-ppc32/toIR.c @@ -2626,17 +2626,8 @@ static Bool dis_int_ldst_str ( UInt theInstr, /*OUT*/Bool* stopHere ) UInt opc2 = (theInstr >> 1) & 0x3FF; /* theInstr[1:10] */ UChar b0 = toUChar((theInstr >> 0) & 1); /* theInstr[0] */ - UInt reg_idx, bit_idx, n_byte; - UInt EA_offset = 0; - UInt n_regs, reg_first, reg_last; - - IRTemp Ra = newTemp(Ity_I32); -// IRTemp Rb = newTemp(Ity_I32); - IRTemp EA = newTemp(Ity_I32); - IRTemp t_EA = newTemp(Ity_I32); + IRTemp t_EA = newTemp(Ity_I32); IRTemp t_nbytes = IRTemp_INVALID; - IRExpr* irx_byte; - IRExpr* irx_shl; *stopHere = False;