aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/powerpc/vadsdub-2.c
blob: c3d1bc84ade0122aa2a2391acb0e7118e554209f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* { dg-do compile } */
/* { dg-require-effective-target powerpc_p9vector_ok } */
/* { dg-options "-mdejagnu-cpu=power9" } */

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

__vector unsigned char
doAbsoluteDifferenceUnsigned (__vector unsigned char *p,
			      __vector unsigned char *q)
{
  __vector unsigned char source_1, source_2;
  __vector unsigned char uc_result;

  source_1 = *p;
  source_2 = *q;

  uc_result = vec_absdb (source_1, source_2);
  return uc_result;
}

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