blob: dbc528a3a3a63ef101b94d84496bacbe5c1e8a45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* Verify that overloaded built-ins for vec_sub with float and
double inputs for VSX produce the right results. */
/* { dg-do compile } */
/* { dg-options "-mvsx" } */
/* { dg-require-effective-target powerpc_vsx } */
#include <altivec.h>
vector float
test1 (vector float x, vector float y)
{
return vec_sub (x, y);
}
vector double
test2 (vector double x, vector double y)
{
return vec_sub (x, y);
}
/* { dg-final { scan-assembler-times "xvsubsp" 1 } } */
/* { dg-final { scan-assembler-times "xvsubdp" 1 } } */
|