summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/vmx/3a-01a.c
blob: 7619d1185cb755fa3d480e10d645759b006e6b4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "harness.h"

/* Simple use of a non-overloaded specific vector intrinsic.  */

vector unsigned int
f(vector unsigned int a, vector unsigned int b)
{
  return vec_vaddcuw(a,b);
}

void test()
{
  check(vec_all_eq(f(((vector unsigned int){1,1,3,2}),
		     ((vector unsigned int){-1,-2,3,-4})),
		   ((vector unsigned int){1,0,0,0})),
	"f");
}