summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/sh/sh4a-cosf.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.target/sh/sh4a-cosf.c')
-rw-r--r--gcc/testsuite/gcc.target/sh/sh4a-cosf.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.target/sh/sh4a-cosf.c b/gcc/testsuite/gcc.target/sh/sh4a-cosf.c
new file mode 100644
index 000000000..f78c140d5
--- /dev/null
+++ b/gcc/testsuite/gcc.target/sh/sh4a-cosf.c
@@ -0,0 +1,13 @@
+/* Verify that we generate single-precision sine and cosine approximate
+ (fsca) in fast math mode. */
+/* { dg-do compile { target "sh*-*-*" } } */
+/* { dg-options "-O -ffast-math" } */
+/* { dg-final { scan-assembler "\tfsca\t" } } */
+
+#if defined __SH4A__ && ! defined __SH4_NOFPU__
+#include <math.h>
+
+float test(float f) { return cosf(f); }
+#else
+asm ("fsca\t");
+#endif