Commit a87a3b4e by Alan Mishchenko

Bug fix in stadard cell library representation.

parent 871684d2
......@@ -195,9 +195,11 @@ Vec_Int_t * Amap_LibDeriveGatePerm_rec( Amap_Lib_t * pLib, Kit_DsdNtk_t * pNtk,
break;
}
}
assert( iDsdLit == Vec_IntSize(vDsdLits) );
Vec_IntFree( vNodFanin );
Vec_IntFree( vDsdLits );
// assert( iDsdLit == Vec_IntSize(vDsdLits) );
if ( iDsdLit != Vec_IntSize(vDsdLits) )
Vec_IntFreeP( &vPerm );
return vPerm;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment