1  /* Verify that overloaded built-ins for vec_sel with int
       2     inputs produce the right code.  */
       3  
       4  /* { dg-do compile } */
       5  /* { dg-require-effective-target powerpc_vsx_ok } */
       6  /* { dg-options "-maltivec -O2" } */
       7  
       8  #include <altivec.h>
       9  
      10  vector bool int
      11  test1_0 (vector bool int x, vector bool int y, vector bool int z)
      12  {
      13    return vec_sel (x, y, z);
      14  }
      15  
      16  vector bool int
      17  test1_1 (vector bool int x, vector bool int y, vector unsigned int z)
      18  {
      19    return vec_sel (x, y, z);
      20  }
      21  
      22  vector signed int
      23  test3_0 (vector signed int x, vector signed int y, vector bool int z)
      24  {
      25    return vec_sel (x, y, z);
      26  }
      27  
      28  vector signed int
      29  test3_1 (vector signed int x, vector signed int y, vector unsigned int z)
      30  {
      31    return vec_sel (x, y, z);
      32  }
      33  
      34  vector unsigned int
      35  test6_0 (vector unsigned int x, vector unsigned int y, vector bool int z)
      36  {
      37    return vec_sel (x, y, z);
      38  }
      39  
      40  vector unsigned int
      41  test6_1 (vector unsigned int x, vector unsigned int y, vector unsigned int z)
      42  {
      43    return vec_sel (x, y, z);
      44  }
      45  
      46  /* { dg-final { scan-assembler-times {\mxxsel\M|\mvsel\M} 6 } } */