aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/powerpc/fold-vec-sub-float.c
blob: 21ddc4a6a58d0773fb3b96981a0e6d30ece74c00 (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_sub with float
   inputs produce the right results.  */

/* { dg-do compile } */
/* { dg-options "-maltivec -mno-vsx" } */
/* { dg-require-effective-target powerpc_altivec } */

#include <altivec.h>

vector float
test1 (vector float x, vector float y)
{
  return vec_sub (x, y);
}

/* { dg-final { scan-assembler-times "vsubfp" 1 } } */