blob: 241ad5c3905e9f4ca7dfa95f58428c9ba93b9e59 [file] [log] [blame]
Eric Fiselierfcafd3e2018-07-10 04:02:00 +00001#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);