aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/powerpc/vadsdu-5.c
blob: a9695634d7ff81282b3f362ac59f8d5ee567664d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* { dg-do compile { target { powerpc*-*-* } } } */
/* { dg-options "-mcpu=power9" } */

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

__vector unsigned char 
doAbsoluteDifferenceUnsignedCharMacro (__vector unsigned char *p, 
				       __vector unsigned char *q)
{
  __vector unsigned char result, source_1, source_2;

  source_1 = *p;
  source_2 = *q;

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

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