summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/powerpc/vadsdu-0.c
blob: aa1d61de7411549b9f77fe958222d2baa9ad2028 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* { dg-do compile { target { powerpc*-*-* } } } */
/* { dg-skip-if "do not override -mcpu" { powerpc*-*-* } { "-mcpu=*" } { "-mcpu=power9" } } */
/* { dg-require-effective-target p9vector_hw } */
/* { dg-options "-mcpu=power9" } */

/* This test should succeed on both 32- and 64-bit configurations.  */
#include <altivec.h>

__vector unsigned int
doAbsoluteDifferenceUnsignedInt (__vector unsigned int *p,
				 __vector unsigned int *q)
{
  __vector unsigned int source_1, source_2;
  __vector unsigned int result;

  source_1 = *p;
  source_2 = *q;

  result = __builtin_vec_vadu (source_1, source_2);
  return result;
}

/* { dg-final { scan-assembler "vabsduw" } } */