mirror of https://github.com/YosysHQ/abc.git
Adding specialized matching to 'if'.
This commit is contained in:
parent
18ed4d3448
commit
ec5bc5825d
|
|
@ -130,7 +130,7 @@ If_Man_t * If_ManStart( If_Par_t * pPars )
|
||||||
// abctime clk = Abc_Clock();
|
// abctime clk = Abc_Clock();
|
||||||
extern int Bat_ManCellFuncLookup( void * pMan, unsigned * pTruth, int nVars, int nLeaves, char * pStr );
|
extern int Bat_ManCellFuncLookup( void * pMan, unsigned * pTruth, int nVars, int nLeaves, char * pStr );
|
||||||
extern void Bat_ManFuncSetupTable();
|
extern void Bat_ManFuncSetupTable();
|
||||||
pPars->pFuncCell = Bat_ManCellFuncLookup;
|
pPars->pFuncCell = (int (*) (If_Man_t *, unsigned *, int, int, char *))Bat_ManCellFuncLookup;
|
||||||
Bat_ManFuncSetupTable();
|
Bat_ManFuncSetupTable();
|
||||||
// Abc_PrintTime( 1, "Setup time", Abc_Clock() - clk );
|
// Abc_PrintTime( 1, "Setup time", Abc_Clock() - clk );
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue