Commit 35a4ce55 by Alan Mishchenko

Compiler warnings.

parent 6a03ece9
...@@ -88,6 +88,7 @@ void Gia_DeriveAigTest() ...@@ -88,6 +88,7 @@ void Gia_DeriveAigTest()
Gia_ManStop( pThis ); Gia_ManStop( pThis );
Vec_WrdFree( vSimsIn ); Vec_WrdFree( vSimsIn );
Vec_StrFree( vSimsOut ); Vec_StrFree( vSimsOut );
nInputs = 0;
} }
...@@ -519,11 +520,11 @@ void Gia_ManReadSimFile( char * pFileName, int * pnIns, int * pnOuts, int * pnPa ...@@ -519,11 +520,11 @@ void Gia_ManReadSimFile( char * pFileName, int * pnIns, int * pnOuts, int * pnPa
continue; continue;
if ( pTemp[0] != '.' ) if ( pTemp[0] != '.' )
break; break;
if ( pTemp[1] = 'i' ) if ( pTemp[1] == 'i' )
nIns = atoi(pTemp+2); nIns = atoi(pTemp+2);
else if ( pTemp[1] = 'o' ) else if ( pTemp[1] == 'o' )
nOuts = atoi(pTemp+2); nOuts = atoi(pTemp+2);
else if ( pTemp[1] = 'p' ) else if ( pTemp[1] == 'p' )
{ {
if ( atoi(pTemp+2) % 64 == 0 ) if ( atoi(pTemp+2) % 64 == 0 )
printf( "Expecting the number of patterns divisible by 64.\n" ); printf( "Expecting the number of patterns divisible by 64.\n" );
......
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