summaryrefslogtreecommitdiffstatshomepage
path: root/benchmarks/eminline_noasm.cpp
diff options
context:
space:
mode:
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 d24ee8ec4e3..49d9f92513a 100644
--- a/benchmarks/eminline_noasm.cpp
+++ b/benchmarks/eminline_noasm.cpp
@@ -13,7 +13,7 @@ osd_ticks_t osd_ticks(void)
static void BM_count_leading_zeros_noasm(benchmark::State& state) {
uint32_t cnt = 0x332533;
while (state.KeepRunning()) {
- (void)count_leading_zeros(cnt);
+ (void)count_leading_zeros_32(cnt);
cnt++;
}
}