Commit 63fc01cc by Alan Mishchenko

Compiler warnings.

parent 083c1218
......@@ -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 );
......
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