aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/vmx/3a-06m.c
blob: e616f9aef2ef93d5277097375839d0adb8284965 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "harness.h"

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

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