summaryrefslogtreecommitdiffstatshomepage
path: root/benchmarks/eminline_native.cpp
blob: d5f622075b6660fdb93bc703a55b60bc84cfe04a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include "benchmark/benchmark_api.h"
#include "osdcomm.h"
#include "eminline.h"
static void BM_count_leading_zeros_native(benchmark::State& state) {
	UINT32 cnt = 0x332533;
	while (state.KeepRunning()) {
		(void)count_leading_zeros(cnt);
		cnt++;
	}
}
// Register the function as a benchmark
BENCHMARK(BM_count_leading_zeros_native);