1 /* The goal is to have both compile tests which verify the desired instruction
2 generation and to functionally test the builtins for correctness. This is
3 done in separate test files, vsx-vector-6-func-2op.c and
4 vsx-vector-6-func-2op-run.c. The vsx-vector-6-func-2opc test file only
5 generates the calls so the instruction counts do not include the counts of
6 the instructions generated as part of the result testing. The result
7 checking code differs for BE/LE. */
16 #define FLOAT_TEST(NAME) \
17 vector float __attribute__ ((noipa)) \
18 float_##NAME(vector float f_src_a, vector float f_src_b) \
20 return vec_##NAME (f_src_a, f_src_b); \
30 #define DOUBLE_TEST(NAME) \
31 vector double __attribute__ ((noipa)) \
32 double_##NAME(vector double d_src_a, vector double d_src_b) \
34 return vec_##NAME (d_src_a, d_src_b); \