1  /* { dg-do compile } */
       2  /* { dg-options "-O2 -msse2" } */
       3  
       4  void foo (int *c, float *x, float *y)
       5  {
       6    c[0] = x[0] < y[0];
       7    c[1] = x[1] < y[1];
       8    c[2] = x[2] < y[2];
       9    c[3] = x[3] < y[3];
      10  }
      11  
      12  /* { dg-final { scan-assembler "cmpltps" } } */