view gcc/testsuite/gcc.dg/vmx/3b-13.c @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 04ced10e8804
children
line wrap: on
line source

#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");
}