| 54 | } |
| 55 | |
| 56 | void cbm_progress_sink_fini(void) { |
| 57 | if (atomic_load(&s_needs_newline) && s_out) { |
| 58 | (void)fprintf(s_out, "\n"); |
| 59 | (void)fflush(s_out); |
| 60 | } |
| 61 | cbm_log_set_sink(NULL); |
| 62 | s_out = NULL; |
| 63 | } |
| 64 | |
| 65 | /* Phase label table: maps pass names to display labels. */ |
| 66 | typedef struct { |
no test coverage detected