Merged with mainline at revision 128810.
[official-gcc.git] / gcc / testsuite / gcc.target / sh / sh4a-sincosf.c
blob42913dbd59eaebeda56387d269b373250238d76a
1 /* Verify that we generate a single single-precision sine and cosine
2 approximate (fsca) in fast math mode when a function computes both
3 sine and cosine. */
4 /* { dg-do compile { target "sh*-*-*" } } */
5 /* { dg-options "-O -ffast-math" } */
6 /* { dg-final { scan-assembler-times "\tfsca\t" 1 } } */
8 #if defined __SH4A__ && ! defined __SH4_NOFPU__
9 #include <math.h>
11 float test(float f) { return sinf(f) + cosf(f); }
12 #else
13 asm ("fsca\t");
14 #endif