Commit 70cb339f by Alan Mishchenko

Bug fix in &dch -x.

parent 336b41a0
...@@ -1869,7 +1869,7 @@ void Gia_ManEquivToChoices_rec( Gia_Man_t * pNew, Gia_Man_t * p, Gia_Obj_t * pOb ...@@ -1869,7 +1869,7 @@ void Gia_ManEquivToChoices_rec( Gia_Man_t * pNew, Gia_Man_t * p, Gia_Obj_t * pOb
Gia_Obj_t * pRepr, * pReprNew, * pObjNew; Gia_Obj_t * pRepr, * pReprNew, * pObjNew;
if ( ~pObj->Value ) if ( ~pObj->Value )
return; return;
if ( (pRepr = Gia_ObjReprObj(p, Gia_ObjId(p, pObj))) ) if ( (pRepr = Gia_ObjReprObj(p, Gia_ObjId(p, pObj))) && !Gia_ObjFailed(p,Gia_ObjId(p,pObj)) )
{ {
if ( Gia_ObjIsConst0(pRepr) ) if ( Gia_ObjIsConst0(pRepr) )
{ {
......
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