Preserving names while deriving a miter.

This commit is contained in:
Alan Mishchenko 2018-09-20 13:23:29 -07:00
parent c5f74867b2
commit 0dec03ba4d
1 changed files with 2 additions and 0 deletions

View File

@ -2851,6 +2851,8 @@ Gia_Man_t * Gia_ManTransformMiter( Gia_Man_t * p )
Gia_ManSetRegNum( pNew, Gia_ManRegNum(p) );
pNew = Gia_ManCleanup( pTemp = pNew );
Gia_ManStop( pTemp );
if ( p->vNamesIn )
pNew->vNamesIn = Vec_PtrDupStr(p->vNamesIn);
return pNew;
}
Gia_Man_t * Gia_ManTransformMiter2( Gia_Man_t * p )