Use 64 bits for debug counters

Has happened 32 bits were not enough for
some test.

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
Marco Costalba
2009-05-10 13:21:45 +02:00
parent 980124c609
commit 78eecbf6d7
2 changed files with 5 additions and 4 deletions

View File

@@ -81,8 +81,8 @@ static const string AppTag = "";
//// Variables
////
long dbg_cnt0 = 0;
long dbg_cnt1 = 0;
uint64_t dbg_cnt0 = 0;
uint64_t dbg_cnt1 = 0;
bool dbg_show_mean = false;
bool dbg_show_hit_rate = false;