mirror of https://github.com/YosysHQ/abc.git
Making 'dsec' return correct return value (undoing this change, made by mistake).
This commit is contained in:
parent
05322e0446
commit
0e78722419
|
|
@ -3018,7 +3018,7 @@ int Abc_NtkDarSec( Abc_Ntk_t * pNtk1, Abc_Ntk_t * pNtk2, Fra_Sec_t * pSecPar )
|
|||
// perform verification
|
||||
RetValue = Fra_FraigSec( pMan, pSecPar, NULL );
|
||||
Aig_ManStop( pMan );
|
||||
return RetValue == -1 ? -1 : !RetValue;
|
||||
return RetValue;
|
||||
}
|
||||
|
||||
/**Function*************************************************************
|
||||
|
|
|
|||
Loading…
Reference in New Issue