[Reland][Runtimes] Merge 'compile_commands.json' files from runtimes build (#116303)
[llvm-project.git] / third-party / benchmark / test / link_main_test.cc
blob131937eebca9d76f538645a5576189aa14572996
1 #include "benchmark/benchmark.h"
3 void BM_empty(benchmark::State& state) {
4 for (auto _ : state) {
5 auto iterations = double(state.iterations()) * double(state.iterations());
6 benchmark::DoNotOptimize(iterations);
9 BENCHMARK(BM_empty);