Adding specialized matching to 'if'.

This commit is contained in:
Alan Mishchenko 2014-08-16 18:34:20 -07:00
parent 18ed4d3448
commit ec5bc5825d
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ If_Man_t * If_ManStart( If_Par_t * pPars )
// abctime clk = Abc_Clock();
extern int Bat_ManCellFuncLookup( void * pMan, unsigned * pTruth, int nVars, int nLeaves, char * pStr );
extern void Bat_ManFuncSetupTable();
pPars->pFuncCell = Bat_ManCellFuncLookup;
pPars->pFuncCell = (int (*) (If_Man_t *, unsigned *, int, int, char *))Bat_ManCellFuncLookup;
Bat_ManFuncSetupTable();
// Abc_PrintTime( 1, "Setup time", Abc_Clock() - clk );
}