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

/* Simple use of a overloaded generic vector intrinsic.  */

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

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