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

vector unsigned char
f(vector unsigned char a, vector unsigned char b) 
{
  return vec_vsububs(a,b);
}

static void test()
{
  static vector unsigned char zero;
  check(vec_all_eq(f(((vector unsigned char){2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2}),
		     ((vector unsigned char){2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2})),
		   zero),
	"f");
}