https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69421
--- Comment #7 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Reduced testcase (in C now):
struct A { double a; };
double a;
void
foo (_Bool *x)
{
long i;
for (i = 0; i < 64; i++)
{
struct A c;
x[i] = c.a || a;
}
}
