mirror of https://github.com/YosysHQ/abc.git
Compiler warnings.
This commit is contained in:
parent
083c1218e5
commit
63fc01ccbd
|
|
@ -419,7 +419,7 @@ void Abc_ResubPrintDivs( void ** ppDivs, int nDivs )
|
|||
for ( i = 0; i < nDivs; i++ )
|
||||
{
|
||||
printf( "Div %2d : ", i );
|
||||
Dau_DsdPrintFromTruth( ppDivs[i], 6 );
|
||||
Dau_DsdPrintFromTruth( pDivs[i], 6 );
|
||||
}
|
||||
}
|
||||
int Abc_ResubNodeToTry( Vec_Int_t * vTried, int iFirst, int iLast )
|
||||
|
|
|
|||
|
|
@ -2103,7 +2103,7 @@ void Gia_ManSimGen( Gia_Man_t * pGia )
|
|||
fprintf( pFile, " unsigned long s%07d_%d = 0x%08x%08x;\n", 0, k, 0, 0 );
|
||||
Gia_ManForEachCiId( pGia, Id, i )
|
||||
{
|
||||
word * pSim = Vec_WrdEntryP(vSim0, i*nWords);
|
||||
//word * pSim = Vec_WrdEntryP(vSim0, i*nWords);
|
||||
//unsigned * pSimU = (unsigned *)pSim;
|
||||
for ( k = 0; k < nWords; k++ )
|
||||
fprintf( pFile, " unsigned long s%07d_%d = ((unsigned long)rand() << 48) | ((unsigned long)rand() << 32) | ((unsigned long)rand() << 16) | (unsigned long)rand();\n", Id, k );
|
||||
|
|
|
|||
Loading…
Reference in New Issue