summaryrefslogtreecommitdiffstatshomepage
path: root/benchmarks/eminline_native.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'benchmarks/eminline_native.cpp')
-rw-r--r--benchmarks/eminline_native.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmarks/eminline_native.cpp b/benchmarks/eminline_native.cpp
index 9402532fddb..89c4e3f5ec3 100644
--- a/benchmarks/eminline_native.cpp
+++ b/benchmarks/eminline_native.cpp
@@ -3,7 +3,7 @@
#include "osdcore.h"
#include "eminline.h"
static void BM_count_leading_zeros_native(benchmark::State& state) {
- UINT32 cnt = 0x332533;
+ uint32_t cnt = 0x332533;
while (state.KeepRunning()) {
(void)count_leading_zeros(cnt);
cnt++;