We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa71323 commit 69cb6f8Copy full SHA for 69cb6f8
benchmarks/eminline_native.cpp
@@ -5,7 +5,7 @@
5
static void BM_count_leading_zeros_native(benchmark::State& state) {
6
uint32_t cnt = 0x332533;
7
while (state.KeepRunning()) {
8
- (void)count_leading_zeros(cnt);
+ (void)count_leading_zeros_32(cnt);
9
cnt++;
10
}
11
benchmarks/eminline_noasm.cpp
@@ -13,7 +13,7 @@ osd_ticks_t osd_ticks(void)
13
static void BM_count_leading_zeros_noasm(benchmark::State& state) {
14
15
16
17
18
19
0 commit comments