blob: 972a32be997250db87b0581b3c03fc24cd451eda [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O2 -msse2" } */
void foo (int *c, float *x, float *y)
{
c[0] = x[0] < y[0];
c[1] = x[1] < y[1];
c[2] = x[2] < y[2];
c[3] = x[3] < y[3];
}
/* { dg-final { scan-assembler "cmpltps" } } */