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.
19 lines
464 B
C
19 lines
464 B
C
#include "harness.h"
|
|
|
|
/* Small expression involving non-overloaded generic vector intrinsics. */
|
|
|
|
vector float
|
|
f(vector float a, vector float b, vector float c)
|
|
{
|
|
return vec_nmsub(a, vec_re(b), vec_nmsub(b, c, vec_expte(a)));
|
|
}
|
|
|
|
static void test()
|
|
{
|
|
check(vec_all_eq(f(((vector float){2,3,5,7}),
|
|
((vector float){11,13,17,19}),
|
|
((vector float){23,29,31,37})),
|
|
((vector float){-249.181808, -369.230774, -495.294098, -575.368408})),
|
|
"f");
|
|
}
|