https://gcc.gnu.org/bugzilla/show_bug.cgi?id=117330
--- Comment #11 from Frank Scheiner <frank.scheiner at web dot de> --- Created attachment 59479 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=59479&action=edit reduced source cvise reduced it to: ``` enum psi_states { PSI_IO_SOME, PSI_NONIDLE, NR_PSI_STATES } * get_recent_times_times; long collect_percpu_times_state_start; int collect_percpu_times_state_mask, collect_percpu_times_delta; void collect_percpu_times() { enum psi_states s = 0; for (; s < NR_PSI_STATES; s++) { if (collect_percpu_times_state_mask) get_recent_times_times[s] += collect_percpu_times_state_start; get_recent_times_times[s] = collect_percpu_times_delta; } } ``` ...., also attached as "reduced source".