blob: 98fa5d2d4191ae3c74b8d0f82480ed28a8796898 [file] [log] [blame]
/* PR target/49621 */
/* { dg-do compile } */
/* { dg-require-effective-target powerpc_altivec_ok } */
/* { dg-options "-O2 -maltivec -mno-vsx" } */
#include <altivec.h>
int
foo (void)
{
vector unsigned a, b, c;
unsigned k = 1;
a = (vector unsigned) { 0, 0, 0, 1 };
b = c = (vector unsigned) { 0, 0, 0, 0 };
a = vec_add (a, vec_splats (k));
b = vec_add (b, a);
c = vec_sel (c, a, b);
if (vec_any_eq (b, c))
return 1;
return 0;
}