mirror of
https://github.com/YosysHQ/abc.git
synced 2026-09-08 11:53:16 +02:00
Silencing some of the gcc warnings.
This commit is contained in:
@@ -170,7 +170,7 @@ static inline int Gia_ManIsoHashKey( int Id, unsigned * pStore, int nWords, int
|
||||
static inline void Gia_ManIsoTableAdd( Gia_Man_t * p, int Id, unsigned * pStore, int nWords, int * pTable, int nTableSize )
|
||||
{
|
||||
Gia_Obj_t * pTemp;
|
||||
int Key, Ent, Counter = 0, Color = Gia_ObjColors( p, Id );
|
||||
int Key, Ent, Color = Gia_ObjColors( p, Id );
|
||||
assert( Color == 1 || Color == 2 );
|
||||
Key = Gia_ManIsoHashKey( Id, pStore, nWords, nTableSize );
|
||||
for ( Ent = pTable[Key], pTemp = (Ent ? Gia_ManObj(p, Ent) : NULL); pTemp;
|
||||
|
||||
@@ -185,7 +185,7 @@ int Cec_ManSeqResimulateInfo( Gia_Man_t * pAig, Vec_Ptr_t * vSimInfo, Abc_Cex_t
|
||||
{
|
||||
Cec_ParSim_t ParsSim, * pParsSim = &ParsSim;
|
||||
Cec_ManSim_t * pSim;
|
||||
int RetValue, clkTotal = clock();
|
||||
int RetValue;//, clkTotal = clock();
|
||||
assert( (Vec_PtrSize(vSimInfo) - Gia_ManRegNum(pAig)) % Gia_ManPiNum(pAig) == 0 );
|
||||
Cec_ManSimSetDefaultParams( pParsSim );
|
||||
pParsSim->nFrames = (Vec_PtrSize(vSimInfo) - Gia_ManRegNum(pAig)) / Gia_ManPiNum(pAig);
|
||||
|
||||
@@ -103,8 +103,8 @@ void Prove_ParamsPrint( Prove_Params_t * pParams )
|
||||
printf( "BDD size limit for bailing out: %d\n", pParams->nBddSizeLimit );
|
||||
printf( "BDD reordering enabled: %s\n", pParams->fBddReorder? "yes":"no" );
|
||||
printf( "Last-gasp mitering limit: %d\n", pParams->nMiteringLimitLast );
|
||||
printf( "Total conflict limit: %ld\n", (int)pParams->nTotalBacktrackLimit );
|
||||
printf( "Total inspection limit: %ld\n", (int)pParams->nTotalInspectLimit );
|
||||
printf( "Total conflict limit: %d\n", (int)pParams->nTotalBacktrackLimit );
|
||||
printf( "Total inspection limit: %d\n", (int)pParams->nTotalInspectLimit );
|
||||
printf( "Parameter dump complete.\n" );
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user