OSDN Git Service

2006-06-19 Anatoly Sokolov <aesok@post.ru>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / sh4a-sin.c
1 /* Verify that we generate single-precision sine and cosine approximate
2    (fsca) in fast math mode.  */
3 /* { dg-do compile { target "sh*-*-*" } } */
4 /* { dg-options "-O -ffast-math" } */
5 /* { dg-final { scan-assembler "\tfsca\t" } } */
6
7 #if defined __SH4A__ && ! defined __SH4_NOFPU__
8 #include <math.h>
9
10 double test(double f) { return sin(f); }
11 #else
12 asm ("fsca\t");
13 #endif