| 57 | BENCHMARK(BM_VariableMult); |
| 58 | |
| 59 | static void BM_VariableDiv(benchmark::State& state) { |
| 60 | volatile int x = 0; |
| 61 | BM_VariableOp(state, [&x](auto& v, auto id, auto val) { x = v.Div(id, val); }); |
| 62 | } |
| 63 | |
| 64 | BENCHMARK(BM_VariableDiv); |
| 65 |
nothing calls this directly
no test coverage detected