diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2016-02-15 00:27:27 -0800 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2016-02-15 00:27:27 -0800 |
commit | 460a13a102d7e95cd16ef16474eac5666103d52e (patch) | |
tree | 2f3e4707a03f6d8550ad675827cfec79436e898f | |
parent | e663db663873534e7fa796fc22ffc6886cd1bc14 (diff) | |
download | abc-460a13a102d7e95cd16ef16474eac5666103d52e.tar.gz abc-460a13a102d7e95cd16ef16474eac5666103d52e.tar.bz2 abc-460a13a102d7e95cd16ef16474eac5666103d52e.zip |
Re-doing the same change.
-rw-r--r-- | src/opt/ret/retIncrem.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/opt/ret/retIncrem.c b/src/opt/ret/retIncrem.c index ea6fc9ab..c322f61b 100644 --- a/src/opt/ret/retIncrem.c +++ b/src/opt/ret/retIncrem.c @@ -169,8 +169,8 @@ int Abc_NtkRetimeFinalizeLatches( Abc_Ntk_t * pNtk, st__table * tLatches, int nI // this is a new latch pLatchIn = Abc_NtkCreateBi(pNtk); pLatchOut = Abc_NtkCreateBo(pNtk); - Abc_ObjAssignName( pLatchOut, Abc_ObjName(pLatch), "_out" ); - Abc_ObjAssignName( pLatchIn, Abc_ObjName(pLatch), "_in" ); + Abc_ObjAssignName( pLatchOut, Abc_ObjName(Abc_ObjFanin0(pLatch)), "_o2" ); + Abc_ObjAssignName( pLatchIn, Abc_ObjName(Abc_ObjFanin0(pLatch)), "_i2" ); } else { |