Commit 1bdbea66 by Alan Mishchenko

Compiler warnings.

parent 8bff9aa1
...@@ -252,12 +252,12 @@ Gia_Man_t * Gia_ManDupAbs( Gia_Man_t * p, Vec_Int_t * vMapPpi2Ff, Vec_Int_t * vM ...@@ -252,12 +252,12 @@ Gia_Man_t * Gia_ManDupAbs( Gia_Man_t * p, Vec_Int_t * vMapPpi2Ff, Vec_Int_t * vM
} }
Vec_IntForEachEntry( vMapFf2Ppi, Used, Flop ) Vec_IntForEachEntry( vMapFf2Ppi, Used, Flop )
{ {
pObj = Gia_ManCi( p, Gia_ManPiNum(p) + Flop );
if ( Used >= 0 ) if ( Used >= 0 )
{ {
assert( pObj->Value != ~0 ); assert( pObj->Value != ~0 );
continue; continue;
} }
pObj = Gia_ManCi( p, Gia_ManPiNum(p) + Flop );
assert( pObj->Value == ~0 ); assert( pObj->Value == ~0 );
pObj->Value = Gia_ManAppendCi(pNew); pObj->Value = Gia_ManAppendCi(pNew);
} }
......
...@@ -863,7 +863,7 @@ int Pdr_ManSolveInt( Pdr_Man_t * p ) ...@@ -863,7 +863,7 @@ int Pdr_ManSolveInt( Pdr_Man_t * p )
{ {
if ( p->pPars->fUseAbs && iFrame == 2 ) if ( p->pPars->fUseAbs && iFrame == 2 )
{ {
int i, Prio, Num = Saig_ManPiNum(p->pAig); int i, Prio;
assert( p->vAbsFlops == NULL ); assert( p->vAbsFlops == NULL );
p->vAbsFlops = Vec_IntStart( Saig_ManRegNum(p->pAig) ); p->vAbsFlops = Vec_IntStart( Saig_ManRegNum(p->pAig) );
p->vMapFf2Ppi = Vec_IntStartFull( Saig_ManRegNum(p->pAig) ); p->vMapFf2Ppi = Vec_IntStartFull( Saig_ManRegNum(p->pAig) );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment