summaryrefslogtreecommitdiffstats
path: root/src/temp/ver/verCore.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/temp/ver/verCore.c')
-rw-r--r--src/temp/ver/verCore.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/temp/ver/verCore.c b/src/temp/ver/verCore.c
index d18d1820..352a4361 100644
--- a/src/temp/ver/verCore.c
+++ b/src/temp/ver/verCore.c
@@ -387,13 +387,13 @@ int Ver_ParseModule( Ver_Man_t * pMan )
if ( Abc_ObjFanoutNum(pNet) == 0 )
Abc_NtkDeleteObj(pNet);
else
- Abc_ObjAddFanin( pNet, Abc_NodeCreateConst0(pNtk) );
+ Abc_ObjAddFanin( pNet, Abc_NtkCreateNodeConst0(pNtk) );
// check if constant 1 net is used
pNet = Abc_NtkFindOrCreateNet( pNtk, "1'b1" );
if ( Abc_ObjFanoutNum(pNet) == 0 )
Abc_NtkDeleteObj(pNet);
else
- Abc_ObjAddFanin( pNet, Abc_NodeCreateConst1(pNtk) );
+ Abc_ObjAddFanin( pNet, Abc_NtkCreateNodeConst1(pNtk) );
// fix the dangling nets
Abc_NtkFinalizeRead( pNtk );