Skip to content

Commit 70cb339

Browse files
committed
Bug fix in &dch -x.
1 parent 336b41a commit 70cb339

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/aig/gia/giaEquiv.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1869,7 +1869,7 @@ void Gia_ManEquivToChoices_rec( Gia_Man_t * pNew, Gia_Man_t * p, Gia_Obj_t * pOb
18691869
Gia_Obj_t * pRepr, * pReprNew, * pObjNew;
18701870
if ( ~pObj->Value )
18711871
return;
1872-
if ( (pRepr = Gia_ObjReprObj(p, Gia_ObjId(p, pObj))) )
1872+
if ( (pRepr = Gia_ObjReprObj(p, Gia_ObjId(p, pObj))) && !Gia_ObjFailed(p,Gia_ObjId(p,pObj)) )
18731873
{
18741874
if ( Gia_ObjIsConst0(pRepr) )
18751875
{

0 commit comments

Comments
 (0)