1 /* Verify that overloaded built-ins for vec_div with long long
2 inputs produce the right results. */
3
4 /* { dg-do compile } */
5 /* { dg-require-effective-target powerpc_vsx_ok } */
6 /* { dg-require-effective-target lp64 } */
7 /* { dg-options "-mvsx -O2" } */
8
9 #include <altivec.h>
10
11 vector signed long long
test3(vector signed long long x,vector signed long long y)12 test3 (vector signed long long x, vector signed long long y)
13 {
14 return vec_div (x, y);
15 }
16
17 vector unsigned long long
test6(vector unsigned long long x,vector unsigned long long y)18 test6 (vector unsigned long long x, vector unsigned long long y)
19 {
20 return vec_div (x, y);
21 }
22 /* { dg-final { scan-assembler-times {\mdivd\M} 2 } } */
23 /* { dg-final { scan-assembler-times {\mdivdu\M} 2 } } */
24