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

vector signed int 
f(vector float a, vector signed int b) 
{
  return vec_splat(vec_cts(vec_ctf(vec_ctu(a, 31),0),9),2);
}

static void test()
{
  check(vec_all_eq(f(((vector float){1,2,3,4}),
		     ((vector signed int){2,4,6,8})),
		   ((vector signed int){2147483647, 2147483647, 2147483647, 2147483647})),
	"f");
}