Removing some unused variables

This commit is contained in:
caheckman 2021-05-17 15:39:24 -04:00
parent 15d22e8164
commit 601757fb09
3 changed files with 2 additions and 4 deletions

View file

@ -823,7 +823,6 @@ void BlockGraph::forceOutputNum(int4 i)
void BlockGraph::selfIdentify(void) void BlockGraph::selfIdentify(void)
{ {
vector<BlockEdge>::iterator tmp;
vector<FlowBlock *>::iterator iter; vector<FlowBlock *>::iterator iter;
FlowBlock *mybl,*otherbl; FlowBlock *mybl,*otherbl;

View file

@ -183,7 +183,7 @@ class LessThreeWay {
Varnode *vnhil1,*vnhil2,*vnhie1,*vnhie2; Varnode *vnhil1,*vnhil2,*vnhie1,*vnhie2;
Varnode *vnlo1,*vnlo2; Varnode *vnlo1,*vnlo2;
Varnode *hi,*lo,*hi2,*lo2; Varnode *hi,*lo,*hi2,*lo2;
int4 hislot,loslot; int4 hislot;
bool hiflip,equalflip,loflip; bool hiflip,equalflip,loflip;
bool lolessiszerocomp; bool lolessiszerocomp;
bool lolessequalform,hilessequalform,signcompare; bool lolessequalform,hilessequalform,signcompare;
@ -240,7 +240,7 @@ public:
class MultForm { class MultForm {
SplitVarnode in; SplitVarnode in;
PcodeOp *add1,*add2; PcodeOp *add1,*add2;
PcodeOp *subhi,*sublo; PcodeOp *subhi;
PcodeOp *multlo,*multhi1,*multhi2; PcodeOp *multlo,*multhi1,*multhi2;
Varnode *midtmp,*lo1zext,*lo2zext; Varnode *midtmp,*lo1zext,*lo2zext;
Varnode *hi1,*lo1,*hi2,*lo2; Varnode *hi1,*lo1,*hi2,*lo2;

View file

@ -172,7 +172,6 @@ class LaneDivide : public TransformManager {
/// \brief Description of a large Varnode that needs to be traced (in the worklist) /// \brief Description of a large Varnode that needs to be traced (in the worklist)
class WorkNode { class WorkNode {
friend class LaneDivide; friend class LaneDivide;
Varnode *vn; ///< The underlying Varnode with lanes
TransformVar *lanes; ///< Lane placeholders for underyling Varnode TransformVar *lanes; ///< Lane placeholders for underyling Varnode
int4 numLanes; ///< Number of lanes in the particular Varnode int4 numLanes; ///< Number of lanes in the particular Varnode
int4 skipLanes; ///< Number of lanes to skip in the global description int4 skipLanes; ///< Number of lanes to skip in the global description