blob: 6004015d945b09e0a11b6a4daeb0fd954803da37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* Verify that overloaded built-ins for vec_eqv with float
inputs produce the right results. */
/* { dg-do compile } */
/* { dg-options "-mvsx -O2" } */
/* { dg-additional-options "-mdejagnu-cpu=power8" { target { ! has_arch_pwr8 } } } */
/* { dg-require-effective-target powerpc_vsx } */
#include <altivec.h>
vector float
test1 (vector float x, vector float y)
{
return vec_eqv (x, y);
}
/* { dg-final { scan-assembler-times "xxleqv" 1 } } */
|