aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/vmx/3a-01.c
blob: 86e514d4a241e3e1bf294b12eee8bb637bc1c2fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "harness.h"
/* Simple use of a non-overloaded generic vector intrinsic.  */

static vector unsigned int
f(vector unsigned int a, vector unsigned int b) 
{
  return vec_addc(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");
}