aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/vmx/3a-06.c
blob: 6f27b3860a891bcab1d3d04076acdaf0ba3a828d (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_addc(vec_addc(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");
}