diff options
author | 2021-06-22 14:42:29 +0200 | |
---|---|---|
committer | 2021-06-22 14:42:29 +0200 | |
commit | 69cb6f828ca212c8b1081b643b1c2352b27c3a30 (patch) | |
tree | 7848dd5f2328c0e2dc800b1deed5f7bb7905ea5d /benchmarks/eminline_native.cpp | |
parent | aa71323e33fc00f0049eeaae2ebc3040762071c3 (diff) |
Fix building benchmarks
Diffstat (limited to 'benchmarks/eminline_native.cpp')
-rw-r--r-- | benchmarks/eminline_native.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmarks/eminline_native.cpp b/benchmarks/eminline_native.cpp index 89c4e3f5ec3..eb5a6c748f9 100644 --- a/benchmarks/eminline_native.cpp +++ b/benchmarks/eminline_native.cpp @@ -5,7 +5,7 @@ static void BM_count_leading_zeros_native(benchmark::State& state) { uint32_t cnt = 0x332533; while (state.KeepRunning()) { - (void)count_leading_zeros(cnt); + (void)count_leading_zeros_32(cnt); cnt++; } } |