blob: 06714ea1fa5f566df1139e451d1a20e22b36f790 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O3" } */
float *a;
void b(float c, float d)
{
a[0] = a[1] = 0.5f * (c - 2 + d);
a[2] = a[3] = 0.5f * (c + 2 + d);
}