summaryrefslogtreecommitdiffstats
path: root/src/map/if/ifMap.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2011-10-02 16:39:51 +0700
committerAlan Mishchenko <alanmi@berkeley.edu>2011-10-02 16:39:51 +0700
commit0f9dacb7bec32bc19afb068b4bcf53a781ab2a0e (patch)
treeee537413b0ce709fdc8d221107186f1f5967ec75 /src/map/if/ifMap.c
parente6e6a3cf9ecfccf71cba45273ea866e7e2526f0a (diff)
downloadabc-0f9dacb7bec32bc19afb068b4bcf53a781ab2a0e.tar.gz
abc-0f9dacb7bec32bc19afb068b4bcf53a781ab2a0e.tar.bz2
abc-0f9dacb7bec32bc19afb068b4bcf53a781ab2a0e.zip
Changes to the matching procedure.
Diffstat (limited to 'src/map/if/ifMap.c')
-rw-r--r--src/map/if/ifMap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/if/ifMap.c b/src/map/if/ifMap.c
index eb7f69b9..55d93884 100644
--- a/src/map/if/ifMap.c
+++ b/src/map/if/ifMap.c
@@ -207,7 +207,7 @@ void If_ObjPerformMappingAnd( If_Man_t * p, If_Obj_t * pObj, int Mode, int fPrep
if ( p->pPars->pFuncCell && RetValue < 2 )
{
assert( pCut->nLimit >= 4 && pCut->nLimit <= 16 );
- pCut->fUseless = !p->pPars->pFuncCell( If_CutTruth(pCut), pCut->nLimit, pCut->nLeaves, p->pPars->pLutStruct );
+ pCut->fUseless = !p->pPars->pFuncCell( p, If_CutTruth(pCut), pCut->nLimit, pCut->nLeaves, p->pPars->pLutStruct );
p->nCutsUselessAll += pCut->fUseless;
p->nCutsUseless[pCut->nLeaves] += pCut->fUseless;
p->nCutsCountAll++;