summaryrefslogtreecommitdiffstatshomepage
path: root/benchmarks/eminline_noasm.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-10-22 14:32:36 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2016-10-22 14:32:36 +0200
commit346a42383e267d087900bff7df72609c20f9ff5f (patch)
tree6865f6758920b40680d041577f6a7acdf15b4d2f /benchmarks/eminline_noasm.cpp
parentab9fd24fbb42c9beec763407c5a6d89b3c3f072e (diff)
fixed benchmarks build and cleanup U64 and S64 macro definition, it is now in standard (nw)
Diffstat (limited to 'benchmarks/eminline_noasm.cpp')
-rw-r--r--benchmarks/eminline_noasm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmarks/eminline_noasm.cpp b/benchmarks/eminline_noasm.cpp
index 0344f074c01..f577154a6b7 100644
--- a/benchmarks/eminline_noasm.cpp
+++ b/benchmarks/eminline_noasm.cpp
@@ -11,7 +11,7 @@ osd_ticks_t osd_ticks(void)
#include "eminline.h"
static void BM_count_leading_zeros_noasm(benchmark::State& state) {
- UINT32 cnt = 0x332533;
+ uint32_t cnt = 0x332533;
while (state.KeepRunning()) {
(void)count_leading_zeros(cnt);
cnt++;