aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/powerpc/vadsduw-2.c
blob: a330f526c51d5a1d9691a7c69b24e18d2f5eb208 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* { 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 int
doAbsoluteDifferenceUnsignedMacro (__vector unsigned int *p,
				   __vector unsigned int *q)
{
  __vector unsigned int result, source_1, source_2;

  source_1 = *p;
  source_2 = *q;

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

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