mirror of https://github.com/YosysHQ/abc.git
Compiler warning.
This commit is contained in:
parent
e58a28b73b
commit
eaa204829c
|
|
@ -26,11 +26,7 @@
|
||||||
#define KISSAT_SAT 10
|
#define KISSAT_SAT 10
|
||||||
#define KISSAT_UNDEC 0
|
#define KISSAT_UNDEC 0
|
||||||
|
|
||||||
static int AbcTopo_KissatTerminate( void * pData )
|
ABC_NAMESPACE_IMPL_START
|
||||||
{
|
|
||||||
abctime * pTimeStop = (abctime *)pData;
|
|
||||||
return pTimeStop && *pTimeStop && Abc_Clock() > *pTimeStop;
|
|
||||||
}
|
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////
|
||||||
/// DECLARATIONS ///
|
/// DECLARATIONS ///
|
||||||
|
|
@ -40,6 +36,12 @@ static int AbcTopo_KissatTerminate( void * pData )
|
||||||
/// FUNCTION DEFINITIONS ///
|
/// FUNCTION DEFINITIONS ///
|
||||||
////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
static int AbcTopo_KissatTerminate( void * pData )
|
||||||
|
{
|
||||||
|
abctime * pTimeStop = (abctime *)pData;
|
||||||
|
return pTimeStop && *pTimeStop && Abc_Clock() > *pTimeStop;
|
||||||
|
}
|
||||||
|
|
||||||
/**Function*************************************************************
|
/**Function*************************************************************
|
||||||
|
|
||||||
Synopsis [Exact synthesis of the MO function into a fixed-topology network.]
|
Synopsis [Exact synthesis of the MO function into a fixed-topology network.]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue