| 417 | } |
| 418 | |
| 419 | void trace_command_performance(const char **argv) |
| 420 | { |
| 421 | if (!trace_want(&trace_perf_key)) |
| 422 | return; |
| 423 | |
| 424 | if (!command_line.len) |
| 425 | atexit(print_command_performance_atexit); |
| 426 | |
| 427 | strbuf_reset(&command_line); |
| 428 | sq_quote_argv_pretty(&command_line, argv); |
| 429 | trace_performance_enter(); |
| 430 | } |
no test coverage detected