diff options
Diffstat (limited to 'gcc/testsuite/gcc.dg/vmx/yousufi-1.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/vmx/yousufi-1.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/vmx/yousufi-1.c b/gcc/testsuite/gcc.dg/vmx/yousufi-1.c new file mode 100644 index 000000000..eed4be3d1 --- /dev/null +++ b/gcc/testsuite/gcc.dg/vmx/yousufi-1.c @@ -0,0 +1,15 @@ +#include "harness.h" + +/* Tests the vec_ctu function, which converts a vector of floats to a vector + of unsigned ints. In powerpc-eabisim-run ver. moto-1.0, vec_ctu produces + strange output for input values of less than ~.0039. -Umair */ + +static void test() +{ + vector float input = ((vector float){0.003,0.003,0.003,0.003}); + vector unsigned int output; + vector unsigned int expect = ((vector unsigned int){0,0,0,0}); + + output = vec_ctu(input, 1); + check(vec_all_eq(output, expect), "vec_ctu"); +} |