#include "llvm/Support/xxhash.h" #include "benchmark/benchmark.h" #include <memory> static uint32_t xorshift(uint32_t State) { … } static void BM_xxh3_64bits(benchmark::State &State) { … } BENCHMARK(…); BENCHMARK_MAIN(…);
#include "llvm/Support/xxhash.h" #include "benchmark/benchmark.h" #include <memory> static uint32_t xorshift(uint32_t State) { … } static void BM_xxh3_64bits(benchmark::State &State) { … } BENCHMARK(…); BENCHMARK_MAIN(…);