Update ChangeLog and version files for release
[official-gcc.git] / gcc / testsuite / gcc.target / sparc / vis3move-2.c
blobde793076516f85e9f5877136928f960e602500d3
1 /* { dg-do compile } */
2 /* { dg-require-effective-target lp64 } */
3 /* { dg-options "-O1 -mvis3" } */
5 double d;
6 float f;
8 long test_convert_from_float(void)
10 return f;
13 long test_convert_from_double(void)
15 return d;
18 float test_convert_to_float(long x)
20 return x;
23 double test_convert_to_double(long x)
25 return x;
28 /* { dg-final { scan-assembler-times "movdtox\t%" 2 } } */
29 /* { dg-final { scan-assembler-times "movxtod\t%" 2 } } */