Compiler warnings.

This commit is contained in:
Alan Mishchenko 2017-02-10 17:40:34 -08:00
parent 8bff9aa1cd
commit 1bdbea6612
2 changed files with 2 additions and 2 deletions

View File

@ -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 )
{
pObj = Gia_ManCi( p, Gia_ManPiNum(p) + Flop );
if ( Used >= 0 )
{
assert( pObj->Value != ~0 );
continue;
}
pObj = Gia_ManCi( p, Gia_ManPiNum(p) + Flop );
assert( pObj->Value == ~0 );
pObj->Value = Gia_ManAppendCi(pNew);
}

View File

@ -863,7 +863,7 @@ int Pdr_ManSolveInt( Pdr_Man_t * p )
{
if ( p->pPars->fUseAbs && iFrame == 2 )
{
int i, Prio, Num = Saig_ManPiNum(p->pAig);
int i, Prio;
assert( p->vAbsFlops == NULL );
p->vAbsFlops = Vec_IntStart( Saig_ManRegNum(p->pAig) );
p->vMapFf2Ppi = Vec_IntStartFull( Saig_ManRegNum(p->pAig) );