| 95 | BENCHMARK(BM_VariableMultRange); |
| 96 | |
| 97 | static void BM_VariableDivRange(benchmark::State& state) { |
| 98 | BM_VariableOp(state, [](auto& v, auto, auto val) { v.DivRange(1, max_vars, val); }); |
| 99 | } |
| 100 | |
| 101 | BENCHMARK(BM_VariableDivRange); |
| 102 |
nothing calls this directly
no test coverage detected