summaryrefslogtreecommitdiffstats
path: root/src/aig/gia/giaDup.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2015-10-04 09:51:57 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2015-10-04 09:51:57 -0700
commit26dc25b7f5e23689636b4d89b98281e821cf7fe8 (patch)
treeff4e262b60ac139762f75925f22dde402cb17a2b /src/aig/gia/giaDup.c
parent7d9e3c2ffe131098a48e493eb9890c551144200b (diff)
downloadabc-26dc25b7f5e23689636b4d89b98281e821cf7fe8.tar.gz
abc-26dc25b7f5e23689636b4d89b98281e821cf7fe8.tar.bz2
abc-26dc25b7f5e23689636b4d89b98281e821cf7fe8.zip
Adding support for flop init-states in extended AIG.
Diffstat (limited to 'src/aig/gia/giaDup.c')
-rw-r--r--src/aig/gia/giaDup.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/aig/gia/giaDup.c b/src/aig/gia/giaDup.c
index 38adfb41..ff57fedb 100644
--- a/src/aig/gia/giaDup.c
+++ b/src/aig/gia/giaDup.c
@@ -656,6 +656,8 @@ Gia_Man_t * Gia_ManDupWithAttributes( Gia_Man_t * p )
pNew->nAnd2Delay = p->nAnd2Delay;
if ( p->vRegClasses )
pNew->vRegClasses = Vec_IntDup( p->vRegClasses );
+ if ( p->vRegInits )
+ pNew->vRegInits = Vec_IntDup( p->vRegInits );
if ( p->vConfigs )
pNew->vConfigs = Vec_IntDup( p->vConfigs );
if ( p->pCellStr )