https://gcc.gnu.org/bugzilla/show_bug.cgi?id=126067
Sam James <sjames at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |needs-bisection
--- Comment #2 from Sam James <sjames at gcc dot gnu.org> ---
```
enum { GCOV_COUNTERS } num;
int *values;
int are_all_counters_zero() {
for (unsigned i = 0; i < num; i++)
if (values[i])
return 0;
}
```
Fails for me with -O2 -march=x86-64-v2.
