aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/powerpc/fold-vec-div-float.c
blob: d73e3d59b8b58cbfa4441fedb94928e253355058 (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
   inputs 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_div (x, y);
}

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