summaryrefslogtreecommitdiffstats
path: root/src/map/mpm
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2015-09-24 12:12:36 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2015-09-24 12:12:36 -0700
commit78951b4c6f68af1423d29f6eaf96edb24f792ac3 (patch)
treee42c6ace456ccc5585d520c8f651804c3022ce63 /src/map/mpm
parent3f77172a7e619a4739bc7acb0ee41a6cd3f6d47e (diff)
downloadabc-78951b4c6f68af1423d29f6eaf96edb24f792ac3.tar.gz
abc-78951b4c6f68af1423d29f6eaf96edb24f792ac3.tar.bz2
abc-78951b4c6f68af1423d29f6eaf96edb24f792ac3.zip
Improvements to Scl_Lib/SC_Cell data-structure.
Diffstat (limited to 'src/map/mpm')
-rw-r--r--src/map/mpm/mpmGates.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/mpm/mpmGates.c b/src/map/mpm/mpmGates.c
index d2af268d..1b8f3180 100644
--- a/src/map/mpm/mpmGates.c
+++ b/src/map/mpm/mpmGates.c
@@ -64,7 +64,7 @@ Vec_Wec_t * Mpm_ManFindDsdMatches( Mpm_Man_t * p, void * pScl )
printf( "Skipping cell %s with %d inputs and %d outputs\n", pRepr->pName, pRepr->n_inputs, pRepr->n_outputs );
continue;
}
- Truth = *Vec_WrdArray( SC_CellPin(pRepr, pRepr->n_inputs)->vFunc );
+ Truth = *Vec_WrdArray( &SC_CellPin(pRepr, pRepr->n_inputs)->vFunc );
Config = Mpm_CutCheckDsd6( p, Truth );
if ( Config == -1 )
{