summaryrefslogtreecommitdiffstats
path: root/src/base/abc/abcDfs.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/base/abc/abcDfs.c')
-rw-r--r--src/base/abc/abcDfs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/base/abc/abcDfs.c b/src/base/abc/abcDfs.c
index a96263c1..8b168a9a 100644
--- a/src/base/abc/abcDfs.c
+++ b/src/base/abc/abcDfs.c
@@ -836,12 +836,12 @@ int Abc_NtkSuppSizeTest( Abc_Ntk_t * p )
{
Abc_Obj_t * pObj;
int i, Counter = 0;
- clock_t clk = clock();
+ abctime clk = Abc_Clock();
Abc_NtkForEachObj( p, pObj, i )
if ( Abc_ObjIsNode(pObj) )
Counter += (Abc_ObjSuppSize(pObj) <= 16);
printf( "Nodes with small support %d (out of %d)\n", Counter, Abc_NtkNodeNum(p) );
- Abc_PrintTime( 1, "Time", clock() - clk );
+ Abc_PrintTime( 1, "Time", Abc_Clock() - clk );
return Counter;
}