aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/sh/pr53512-1.c
blob: c54671bd20cd3ffa6450acd52f3ece2fbe154211 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* Verify that the fsca insn is used when specifying -mfsca and
  -funsafe-math-optimizations.  */
/* { dg-do compile }  */
/* { dg-options "-O1 -mfsca -funsafe-math-optimizations" } */
/* { dg-skip-if "" { "sh*-*-*" } { "-m1" "-m2*" "-m3*" "-m4al" "*nofpu" "-m4-340*" "-m4-400*" "-m4-500*" "-m5*" } { "" } }  */
/* { dg-final { scan-assembler-times "fsca" 3 } } */

#include <math.h>

float
test_func_00 (float x)
{
  return sinf (x) + cosf (x);
}

float
test_func_01 (float x)
{
  return sinf (x);
}

float
test_func_02 (float x)
{
  return cosf (x);
}