blob: 241ad5c3905e9f4ca7dfa95f58428c9ba93b9e59 [file] [log] [blame]
Andrew Topa7b1cfa2019-12-18 19:15:07 -08001#include "benchmark/benchmark.h"
2
3void BM_empty(benchmark::State& state) {
4 for (auto _ : state) {
5 benchmark::DoNotOptimize(state.iterations());
6 }
7}
8BENCHMARK(BM_empty);