| 10 | } |
| 11 | |
| 12 | void run_empty_functions(int count) { |
| 13 | for (int i = 0; i < count; ++i) { |
| 14 | empty_function(); |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | int main() { |
| 19 | const int total_calls = 10000000; // 10 million calls in total |
nothing calls this directly
no test coverage detected