OSDN Git Service

Fix PR target/50099
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.target / powerpc / ppc-fpconv-6.c
1 /* { dg-do compile { target { powerpc*-*-* } } } */
2 /* { dg-skip-if "" { powerpc*-*-darwin* } { "*" } { "" } } */
3 /* { dg-require-effective-target powerpc_vsx_ok } */
4 /* { dg-options "-O3 -mcpu=power6 -ffast-math" } */
5 /* { dg-final { scan-assembler-times "fctiwz" 2 } } */
6 /* { dg-final { scan-assembler-not "fctiwuz" } } */
7 /* { dg-final { scan-assembler-times "fctidz" 8 } } */
8 /* { dg-final { scan-assembler-not "fctiduz" } } */
9 /* { dg-final { scan-assembler-not "xscvdpsxds" } } */
10 /* { dg-final { scan-assembler-not "xscvdpuxds" } } */
11
12 void float_to_int  (int *dest, float  src) { *dest = (int) src; }
13 void double_to_int (int *dest, double src) { *dest = (int) src; }
14
15 void float_to_uint  (int *dest, float  src) { *dest = (unsigned int) src; }
16 void double_to_uint (int *dest, double src) { *dest = (unsigned int) src; }
17
18 void float_to_llong  (long long *dest, float  src) { *dest = (long long) src; }
19 void double_to_llong (long long *dest, double src) { *dest = (long long) src; }
20
21 void float_to_ullong  (unsigned long long *dest, float  src) { *dest = (unsigned long long) src; }
22 void double_to_ullong (unsigned long long *dest, double src) { *dest = (unsigned long long) src; }