aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/vmx/3a-01m.c
blob: d57287007d99647ada28b8bf47416a0bcc2cfb76 (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);
}

static 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");
}