bd52d17906
too large to list, but see: http://gcc.gnu.org/gcc-3.4/changes.html http://gcc.gnu.org/gcc-4.0/changes.html http://gcc.gnu.org/gcc-4.1/changes.html for the details.
17 lines
351 B
C
17 lines
351 B
C
#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");
|
|
}
|