summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/powerpc/fold-vec-div-floatdouble.c
blob: 569467e61f946f70b4dcc2147b701d5b0b70a000 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* Verify that overloaded built-ins for vec_div with float and
   double inputs for VSX produce the right results. */

/* { dg-do compile } */
/* { dg-require-effective-target powerpc_vsx_ok } */
/* { dg-options "-mvsx" } */

#include <altivec.h>

vector double
test2 (vector double x, vector double y)
{
  return vec_div (x, y);
}

/* { dg-final { scan-assembler-times {\mxvdivdp\M} 1 } } */