mirror of https://github.com/YosysHQ/abc.git
Bug fix in Gia_ObjPrint()
This commit is contained in:
parent
9cb52998f5
commit
3bd0420bd9
|
|
@ -1125,9 +1125,9 @@ void Gia_ObjPrint( Gia_Man_t * p, Gia_Obj_t * pObj )
|
|||
else if ( Gia_ObjIsPo(p, pObj) )
|
||||
printf( "PO( %4d%s )", Gia_ObjFaninId0p(p, pObj), (Gia_ObjFaninC0(pObj)? "\'" : " ") );
|
||||
else if ( Gia_ObjIsCi(pObj) )
|
||||
printf( "RI" );
|
||||
printf( "RO" );
|
||||
else if ( Gia_ObjIsCo(pObj) )
|
||||
printf( "RO( %4d%s )", Gia_ObjFaninId0p(p, pObj), (Gia_ObjFaninC0(pObj)? "\'" : " ") );
|
||||
printf( "RI( %4d%s )", Gia_ObjFaninId0p(p, pObj), (Gia_ObjFaninC0(pObj)? "\'" : " ") );
|
||||
// else if ( Gia_ObjIsBuf(pObj) )
|
||||
// printf( "BUF( %d%s )", Gia_ObjFaninId0p(p, pObj), (Gia_ObjFaninC0(pObj)? "\'" : " ") );
|
||||
else
|
||||
|
|
|
|||
Loading…
Reference in New Issue