From 1bb50384d1b89e701afdfff00d91ea3903d5fa92 Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Fri, 10 Jan 2020 17:44:48 +0200 Subject: Improving performance of 'lutpack'. --- src/opt/sfm/sfmDec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/opt/sfm/sfmDec.c') diff --git a/src/opt/sfm/sfmDec.c b/src/opt/sfm/sfmDec.c index c5af0ac0..a558c120 100644 --- a/src/opt/sfm/sfmDec.c +++ b/src/opt/sfm/sfmDec.c @@ -1865,7 +1865,7 @@ Abc_Obj_t * Abc_NtkAreaOptOne( Sfm_Dec_t * p, int i ) Sfm_Par_t * pPars = p->pPars; Abc_Obj_t * pObj = Abc_NtkObj( p->pNtk, i ); int Limit, RetValue; - if ( pPars->nMffcMin > 1 && Abc_NodeMffcLabel(pObj) < pPars->nMffcMin ) + if ( pPars->nMffcMin > 1 && Abc_NodeMffcLabel(pObj, NULL) < pPars->nMffcMin ) return NULL; if ( pPars->iNodeOne && i != pPars->iNodeOne ) return NULL; -- cgit v1.2.3